laravel create a migration code example

Example 1: php artisan make migration

php artisan make:migration create_users_table

Example 2: add column in laravel migration

php artisan make:migration add_paid_to_users_table --table=users

Example 3: laravel migration

php artisan migrate

Example 4: how to make-migrations in laravel

php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users

Example 5: laravel migration

php artisan make:migration create_users_table

Example 6: create migration with model laravel

php artisan make:model Settings --migration

Tags:

Php Example