1 | <?php |
||
7 | class MigrateRollback extends YarakCommand |
||
8 | { |
||
9 | /** |
||
10 | * The command signature. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'migrate:rollback |
||
15 | {--steps=1 : Number of steps to rollback.}'; |
||
16 | |||
17 | /** |
||
18 | * The command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Refresh the database.'; |
||
23 | |||
24 | /** |
||
25 | * Handle the command. |
||
26 | */ |
||
27 | protected function handle() |
||
32 | } |
||
33 |