1php artisan make:migration add_votes_to_users_table --table=users
2
3php artisan make:migration create_users_table --create=users
1//to create migration file in PHP use the artisan command "make"
2php artisan make:migration create_users_table
3// migration file must follow the naming convention "operation_tableName_table"
4//Migration file to add column naming convention would be "add_tablename_table"