From ffbb29512f11a1445fef12a1f726bf0960096d11 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 18:47:15 +0800 Subject: [PATCH] Update 20221013031925_system_auth.php --- database/migrations/20221013031925_system_auth.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php index 11af2820e..f8deb94a2 100644 --- a/database/migrations/20221013031925_system_auth.php +++ b/database/migrations/20221013031925_system_auth.php @@ -7,16 +7,17 @@ use think\migration\Migrator; */ class SystemAuth extends Migrator { - private $name = 'system_auth'; - public function change() { + // 当前操作 + $table = 'system_auth'; + // 存在则跳过 - if ($this->hasTable($this->name)) { + if ($this->hasTable($table)) { return; } // 创建数据表 - $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限', ]) ->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '权限名称'])