whereNotNull('scheduled_at')->delete(); Schema::table('incidents', function (Blueprint $table) { $table->dropColumn('scheduled_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('incidents', function (Blueprint $table) { $table->timestamp('scheduled_at')->after('user_id')->nullable()->default(null); }); } }