foreign key eloquent code example
Example 1: create laravel migration
php artisan make:migration create_users_table
Example 2: rename table migration laravel
Schema::rename($from, $to);
php artisan make:migration create_users_table
Schema::rename($from, $to);