| 1 | <?php  | 
            ||
| 9 | class MigrateCommand extends Command  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * The name and signature of the console command.  | 
            ||
| 13 | *  | 
            ||
| 14 | * @var string  | 
            ||
| 15 | */  | 
            ||
| 16 |     protected $signature = 'rinvex:migrate:bookings {--f|force : Force the operation to run when in production.}'; | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * The console command description.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @var string  | 
            ||
| 22 | */  | 
            ||
| 23 | protected $description = 'Migrate Rinvex Bookings Tables.';  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * Execute the console command.  | 
            ||
| 27 | *  | 
            ||
| 28 | * @return void  | 
            ||
| 29 | */  | 
            ||
| 30 | public function handle(): void  | 
            ||
| 50 | }  | 
            ||
| 51 |