artisan make:migration

PURPOSE A ‘migration’ is any change in the database layout It can be creating a new table, removing/dropping a table or modifying the layout of an existing database table. USAGE >php artisan make:migration create_widgets_table >php artisan make:migration alter_widgets_table >php artisan make:migration drop_widgets_table Description:   Create a new migration file Usage:   make:migration [options] [–] <name> …