From be9ccd166d1440e6704f7bd1ac63b4e9ef53f93f Mon Sep 17 00:00:00 2001 From: ymc9 <104139426+ymc9@users.noreply.github.com> Date: Wed, 19 Nov 2025 19:08:49 -0800 Subject: [PATCH] chore(cli): improve help text of migrate reset --- packages/cli/src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index a271efc8..267ae208 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -94,6 +94,10 @@ function createProgram() { .addOption(new Option('--skip-seed', 'skip seeding the database after reset')) .addOption(noVersionCheckOption) .description('Reset your database and apply all migrations, all data will be lost') + .addHelpText( + 'after', + '\nIf there is a seed script defined in package.json, it will be run after the reset. Use --skip-seed to skip it.', + ) .action((options) => migrateAction('reset', options)); migrateCommand