php artisan migrations code example
Example 1: php artisan make migration
php artisan make:migration create_users_table
Example 2: laravel migration rollback
To rollback one step:
php artisan migrate:rollback
To rollback multiple steps:
php artisan migrate:rollback --step=[x]
To drop all tables and reload all migrations:
php artisan migrate:fresh
Example 3: laravel create migration
php artisan make:migration create_flights_table
php artisan make:migration create_flights_table --create=flights
php artisan make:migration add_destination_to_flights_table --table=flights