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