tinyInteger("is_provide_food")->default(1)->comment("是否提供餐饮 0:不提供 1:提供")->after("is_free"); $table->tinyInteger("is_need_hand")->default(0)->comment("是否需要手动报名 0:不需要 1:需要")->after("is_provide_food"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('activity', function (Blueprint $table) { $table->dropColumn('is_provide_food'); $table->dropColumn('is_need_hand'); }); } };