PHP artisan migration commands list

//To create a new table use the command below

php artisan make:migration create_posts_table

//To create a new column in exsiting table

php artisan make:migration add_description_column_to_categories --table=categories

// Rollback last migration

php artisan migrate:rollback --step=1 

Config, Cache & views all refresh with the command below.

php artisan optimize:clear