Remove --production flag hint from development mode migration errors

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 06:34:18 +00:00
parent 8281b0940d
commit 6c7cc9bc4e
3 changed files with 0 additions and 15 deletions

View File

@@ -44,11 +44,6 @@ class Seed_Command extends LaravelSeedCommand
$this->info('');
$this->line('To begin a migration session:');
$this->line(' php artisan migrate:begin');
$this->info('');
$this->line('Or to run without snapshot (not recommended):');
$this->line(' php artisan db:seed --production');
$this->warn('');
$this->warn('⚠️ The --production flag skips safety checks and should be used carefully!');
return 1;
}

View File

@@ -70,11 +70,6 @@ class Maint_Migrate extends Command
$this->info('');
$this->line('To begin a migration session:');
$this->line(' php artisan migrate:begin');
$this->info('');
$this->line('Or to run without snapshot (not recommended):');
$this->line(' php artisan migrate --production');
$this->warn('');
$this->warn('⚠️ The --production flag skips safety checks and should be used carefully!');
return 1;
}

View File

@@ -111,11 +111,6 @@ class Migrate_Normalize_Schema_Command extends Command
$this->info('');
$this->line('To begin a migration session:');
$this->line(' php artisan migrate:begin');
$this->info('');
$this->line('Or to run without snapshot (not recommended):');
$this->line(' php artisan migrate:normalize_schema --production');
$this->warn('');
$this->warn('⚠️ The --production flag skips safety checks and should be used carefully!');
return 1;
}