laravel migrate only model code example
Example 1: migrate fresh specific table
php artisan migrate:refresh --path=/database/migrations/fileName.php
Example 2: artisan make migration with model
php artisan make:Model Status -m
php artisan migrate:refresh --path=/database/migrations/fileName.php
php artisan make:Model Status -m