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"