how to rename migration file name in laravel code example
Example 1: migration rename column laravel
public function down()
{
Schema::table('posts', function (Blueprint $table) {
$table->renameColumn('user_id', 'author_ID');
});
}
Example 2: migration rename column laravel
php artisan make:migration rename_author_id_in_posts_table --table=posts