1 | <?php |
||
13 | class MigrateFresh extends Command |
||
14 | { |
||
15 | use ConfirmableTrait; |
||
16 | |||
17 | /** |
||
18 | * The console command name. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $signature = 'migrate:fresh {--database= : The database connection to use.} |
||
23 | {--force : Force the operation to run when in production.} |
||
24 | {--path= : The path of migrations files to be executed.} |
||
25 | {--seed : Indicates if the seed task should be re-run.}'; |
||
26 | |||
27 | /** |
||
28 | * The console command description. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $description = 'Drop all database tables and re-run all migrations'; |
||
33 | |||
34 | |||
35 | /** |
||
36 | * Execute the console command. |
||
37 | * |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function handle() |
||
41 | { |
||
42 | $database = $this->input->getOption('database'); |
||
43 | |||
44 | $path = $this->input->getOption('path'); |
||
45 | |||
46 | if (! $this->confirmToProceed()) { |
||
47 | return; |
||
48 | } |
||
49 | |||
50 | $this->info('Dropping all tables...'); |
||
51 | |||
52 | event(new DroppingTables()); |
||
53 | if ($database !== null) { |
||
54 | DB::setDefaultConnection($database); |
||
55 | } |
||
56 | $this->getTableDropper()->dropAllTables(); |
||
57 | event(new DroppedTables()); |
||
58 | |||
59 | $this->info('Running migrations...'); |
||
60 | $this->call('migrate', [ |
||
61 | '--database' => $database, |
||
62 | '--path' => $path, |
||
63 | '--force' => true, |
||
64 | ]); |
||
65 | |||
66 | if ($this->option('seed')) { |
||
67 | $this->info('Running seeders...'); |
||
68 | $this->call('db:seed', ['--force' => true]); |
||
69 | } |
||
70 | |||
71 | $this->comment('All done!'); |
||
72 | } |
||
73 | |||
74 | public function getTableDropper(): TableDropper |
||
78 | } |
||
79 |