How to drop softDeletes from a table in a migration How to drop softDeletes from a table in a migration laravel laravel

How to drop softDeletes from a table in a migration


On your migration class:

public function down(){    Schema::table("users", function ($table) {        $table->dropSoftDeletes();    });}

Illuminate\Database\Schema\Blueprint.php:

public function dropSoftDeletes(){    $this->dropColumn('deleted_at');}

Since Laravel 5.5, this information can be found in the documentation.