rename table migration laravel code example

Example 1: laravel rename table

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

Example 2: migration rename column laravel

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

Example 3: rename table migration laravel

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

Example 4: migrations required field laravel

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

Example 5: migration rename column laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts

Tags:

Php Example