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' => '权限名称'])