mirror of
https://github.com/knex/knex.git
synced 2025-08-12 02:31:01 +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) {
|
||
|
|
||
|
}
|
||
|
}
|