delete migration in laravel code example

Example 1: laravel migration remove column

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

Example 2: delete a migration laravel

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

Example 3: laravel migration table softdeletes

use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddSoftDeletesToUserTable extends Migration {/**  * Run the migrations.  *  * @return void  */ public function up() {    Schema::table('users', function(Blueprint $table)    {       $table->softDeletes();    }); }/**  * Reverse the migrations.  *  * @return void  */ public function down() {  Schema::table('users', function(Blueprint $table)  {       $table->dropSoftDeletes();  }); }}