How do you generate migrations? Technology Community › Category: Laravel › How do you generate migrations? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Migrations are like version control for your database, allowing your team to easily modify and share the application’s database schema. To create a migration, use: php artisan make:migration create_users_table