how to create migration out of model in laravel code example
Example 1: artisan make migration with model
php artisan make:Model Status -m
Example 2: php artisan make :migration with model
php artisan make:model ModelName -a
Example 3: create migration with model laravel
php artisan make:model Settings --migration