How to Remove Column from Table in Laravel Migration?
Hi Artisan,
In this quick example, let's see laravel migration remove column. This post will give you simple example of how to drop column in laravel migration. i would like to show you remove column laravel migration. We will use drop field laravel migration.
you can easily drop column from database table in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11.
I will give you some example that way you can easily remove column using migration. let's see bellow example that will help you.
1) Remove Column using Migration
2) Remove Multiple Column using Migration
3) Remove Column If Exists using Migration
1) Remove Column using Migration
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ChangePostsTableColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->dropColumn('body');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}
2) Remove Multiple Column using Migration
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ChangePostsTableColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->dropColumn(['body', 'title']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}
3) Remove Column If Exists using Migration
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ChangePostsTableColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasColumn('posts', 'body')){
Schema::table('posts', function (Blueprint $table) {
$table->dropColumn('body');
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Create Table using Migration in Laravel?
- Laravel Check If Foreach is Empty Example
- Laravel Blade Check If Variable is Set or Not Example
- How to Write PHP Code in Laravel Blade?
- Laravel Bail Rule | Stop Validation On First Failure
- How to Drop Foreign Key Constraint in Laravel Migration?
- How to Add MySQL Trigger from Migration in Laravel?