softDeletes(); // 增加软删除字段 }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('video', function (Blueprint $table) { $table->dropSoftDeletes(); // 在回滚迁移时移除软删除字段 }); } };