We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf8168 commit f5c8831Copy full SHA for f5c8831
packages/cli/src/index.ts
@@ -94,6 +94,10 @@ function createProgram() {
94
.addOption(new Option('--skip-seed', 'skip seeding the database after reset'))
95
.addOption(noVersionCheckOption)
96
.description('Reset your database and apply all migrations, all data will be lost')
97
+ .addHelpText(
98
+ 'after',
99
+ '\nIf there is a seed script defined in package.json, it will be run after the reset. Use --skip-seed to skip it.',
100
+ )
101
.action((options) => migrateAction('reset', options));
102
103
migrateCommand
0 commit comments