laravel migrate change column name 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: laravel rename column name

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

Example 3: migration rename column laravel

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

Tags:

Php Example