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