Files
speckle-server/packages/server/modules/cli/commands/db.js
T

11 lines
229 B
JavaScript

/** @type {import('yargs').CommandModule} */
const command = {
command: 'db',
describe: 'DB actions - migrations, seeding',
builder(yargs) {
return yargs.commandDir('db').demandCommand()
}
}
module.exports = command