//To create a new table use the command below
php artisan make:migration create_posts_table
//To create a new column in exsiting tablephp artisan make:migration add_description_column_to_categories --table=categories
// Rollback last migrationphp artisan migrate:rollback --step=1
Config, Cache & views all refresh with the command below.
php artisan optimize:clear