Files
speckle-server/packages/server/modules/cli/commands/db/migrate.js
T
2022-03-29 16:30:49 +03:00

11 lines
234 B
JavaScript

/** @type {import('yargs').CommandModule} */
const command = {
command: 'migrate',
describe: 'Migration specific commands',
builder(yargs) {
return yargs.commandDir('migrate').demandCommand()
}
}
module.exports = command