| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- /**
- * 禁用数据库迁移命令
- *
- * 覆盖所有 migrate 相关命令,防止意外执行数据库迁移操作
- */
- class DisabledMigrateCommand extends Command
- {
- protected $signature = 'migrate:*';
- protected $description = '数据库迁移命令已被禁用';
- public function handle()
- {
- $this->error('数据库迁移命令已被禁用,请联系管理员进行数据库变更3!');
- return Command::FAILURE;
- }
- }
|