enum('permission',['允许','禁止'])->after('alias_name')->default('允许')->comment('许可'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('authorities',function (Blueprint $table){ $table->dropColumn('permission'); }); } }