From 5900ae17d479fb931afba13c085e207534682fcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 13 Oct 2022 14:25:33 +0800 Subject: [PATCH] Update 20221013032309_system_auth_node.php --- database/migrations/20221013032309_system_auth_node.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/database/migrations/20221013032309_system_auth_node.php b/database/migrations/20221013032309_system_auth_node.php index 702b1d25e..9c2361428 100644 --- a/database/migrations/20221013032309_system_auth_node.php +++ b/database/migrations/20221013032309_system_auth_node.php @@ -15,10 +15,10 @@ class SystemAuthNode extends Migrator $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', ]) - ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色']) - ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点']) - ->addIndex('auth', ['name' => 'idx_system_auth_node_title']) - ->addIndex('auth', ['name' => 'idx_system_auth_node_status']) + ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色编号']) + ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点路径']) + ->addIndex('auth', ['name' => 'idx_system_auth_node_auth']) + ->addIndex('node', ['name' => 'idx_system_auth_node_node']) ->save(); } }