tinyInteger('audit_type')->after('subscribe')->default(2)->comment('1.需要审核 2 不需要审核'); $table->timestamp('deleted_at')->nullable()->after('updated_at'); }); } public function down() { Schema::table('enterprise_alliances', function (Blueprint $table) { $table->dropColumn('audit_type'); $table->dropColumn('deleted_at'); }); } }