dropColumn("is_airing"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('anime', function (Blueprint $table) { $table->boolean('is_airing')->default(false); }); } }