rename column migrations laravel code example
Example 1: rename table migration laravel
Schema::rename($from, $to);
Example 2: migration rename column laravel
php artisan make:migration rename_author_id_in_posts_table --table=posts
Schema::rename($from, $to);
php artisan make:migration rename_author_id_in_posts_table --table=posts