create migration laravel with model code example

Example 1: laravel make model with migration and controller

php artisan make:model Todo -mcr

Example 2: php artisan make migration

php artisan make:migration create_users_table

Example 3: create laravel migration

php artisan make:migration create_users_table

Example 4: laravel migration

php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users

Example 5: laravel create model and migration

# 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

Example 6: laravel create migration

php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users

Tags:

Misc Example