//to createmigrationfilein PHP use the artisan command "make"
php artisan make:migration create_users_table
// migrationfile must follow the naming convention "operation_tableName_table"
//Migrationfiletoaddcolumn naming convention would be "add_tablename_table"
# If you would like to generate a database migration when you # generate the model, you may use the --migration or -m option:php artisan make:model Flight --migration
php artisan make:model Flight -m