how to rename and change foreign key with migration file laravel code example
Example 1: rename table migration laravel
Schema::rename($from, $to);
Example 2: rename migration laravel
php artisan make:migration alter_your_table --table=your_table