laravel rename column migration 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 migration change column type

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}

Example 4: laravel rename table

Schema::rename($currentTableName, $newTableName);

Example 5: migration rename column laravel

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

Example 6: rename table migration laravel

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

Tags:

Misc Example