laravel migration remove soft delete code example

Example 1: laravel drop column softdeletes

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

Example 2: laravel migration table softdeletes

$ php artisan make:migration add_soft_deletes_to_user_table --table="users"}

Example 3: delete a migration laravel

// delete a migration safely from laravel 
delete migration from database/migrations/ directory
and also delete entry from migrations table

Example 4: laravel migration table softdeletes

php artisan migrate

Tags:

Php Example