mirror of
https://github.com/knex/knex.git
synced 2025-08-11 18:20:57 +00:00
22 lines
401 B
JavaScript
22 lines
401 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (commands) {
|
|
commands['migrate'] = function (argv) {
|
|
|
|
};
|
|
commands['migrate'].help = 'runs migrations that have not run yet'
|
|
|
|
commands['migrate:make'] = function (argv) {
|
|
|
|
}
|
|
commands['migrate:make'].help = 'generates a new migration'
|
|
|
|
commands['migrate:up'] = function (argv) {
|
|
|
|
};
|
|
|
|
commands['migrate:down'] = function (argv) {
|
|
|
|
}
|
|
}
|