rename migration laravel code example

Example 1: laravel migration change column name

Schema::table('users', function (Blueprint $table) {
    $table->renameColumn('from', 'to');
});

Example 2: migration rename column laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts

Example 3: rename table migration laravel

Schema::rename($from, $to);

Example 4: migrations required field laravel

$table->string('foo')->nullable(false)->change();

Example 5: rename migration laravel

php artisan make:migration alter_your_table --table=your_table