1// use the make:migration Artisan command to generate a database migration
2php artisan make:migration create_flights_table
3
4// use --create to indicate whether the migration will be creating a new table
5php artisan make:migration create_flights_table --create=flights
6
7// use --table to indicate the table name
8php artisan make:migration add_destination_to_flights_table --table=flights
1php artisan make:migration create_users_table --create=users
2
3php artisan make:migration add_votes_to_users_table --table=users