laravel migration edit table artisan code example
Example 1: change existing migration laravel
php artisan make:migration update_description_in_products_table
Example 2: rename table migration laravel
Schema::rename($from, $to);
php artisan make:migration update_description_in_products_table
Schema::rename($from, $to);