Commit 1e7fc2e8 authored by hangjun83's avatar hangjun83

role权限表去掉标题字段

parent c0982f86
......@@ -9,5 +9,4 @@ $api = app('Dingo\Api\Routing\Router');
require __DIR__.'/../routes/api/auth.php';
require __DIR__.'/../routes/api/permissions.php';
//require __DIR__.'/../routes/api/tools.php';
......@@ -62,7 +62,6 @@ class CreatePermissionTables extends Migration
Schema::create($tableNames['roles'], function (Blueprint $table) {
$table->id();
$table->string('name')->comment('名称');
$table->string('title')->comment('标题');
$table->unsignedTinyInteger('is_default')->default(0)->comment('是否默认');
$table->text('remark')->nullable()->comment('备注');
$table->string('guard_name')->comment('权限插件保留字段');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment