laravel rename table code example

Example 1: laravel migration remove column

public function up()
{
  Schema::table('table', function($table) {
    $table->dropColumn('column_name');
  });
}

Example 2: migration rename column laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts

Example 3: laravel rename table

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

Example 4: laravel create migration

php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users

Example 5: migration rename column laravel

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

Example 6: migration rename column laravel

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

Tags:

Misc Example