php artisan make:migration
DatabaseCreate a new database migration
Options & Flags
Available options for this command
--create=tableCreate table migration
--table=tableModify existing table
Examples
Common usage examples
Create a new migration
php artisan make:migration create_posts_tableCreate table migration with boilerplate
php artisan make:migration create_posts_table --create=postsCreate migration to modify existing table
php artisan make:migration add_status_to_posts --table=postsRelated Commands
You might also find these useful