You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
902 B

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("permissions", function (Blueprint $table) {
$table->integer("pid")->default(0)->comment("父级ID");
$table->string("url")->nullable()->comment("路由或外链地址");
$table->string("icon")->nullable()->comment("图标样式");
$table->tinyInteger("visible")->default(1)->comment("是否可见");
$table->integer("sortnumber")->default(0)->comment("排序值");
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};