1* To run a specific migration
2
3php artisan migrate:refresh --path=/database/migrations/2019_03_23_165757_create_combined_1553343771_users_table.php
4
5- Note: it will drop the table and create a new one.
1# If you would like to generate a database migration when you
2# generate the model, you may use the --migration or -m option:
3
4php artisan make:model Flight --migration
5php artisan make:model Flight -m
1php artisan migrate:refresh --path=/database/migrations/2014_10_12_000000_create_users_table.php