1 | <?php |
||
7 | class MigrateReset extends YarakCommand |
||
8 | { |
||
9 | /** |
||
10 | * The command signature. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'migrate:reset'; |
||
15 | |||
16 | /** |
||
17 | * The command description. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description = 'Rollback all migrations.'; |
||
22 | |||
23 | /** |
||
24 | * Handle the command. |
||
25 | */ |
||
26 | protected function handle() |
||
30 | } |
||
31 |