change column in 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

public function down()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('user_id', 'author_ID');
    });
}

Example 3: laravel change column

Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->nullable()->change();
});

Example 4: migration rename column laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts

Tags:

Php Example