From 9af17727ebde56e7996f487ff82e4514919d2a67 Mon Sep 17 00:00:00 2001 From: windeal <2378264731@qq.com> Date: Wed, 21 Aug 2024 16:31:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9polaris=5Fserver.sql?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E8=AF=AD=E6=B3=95=E9=94=99=E8=AF=AF=20(#1379?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- store/mysql/scripts/polaris_server.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/store/mysql/scripts/polaris_server.sql b/store/mysql/scripts/polaris_server.sql index c49da920d..da5351911 100644 --- a/store/mysql/scripts/polaris_server.sql +++ b/store/mysql/scripts/polaris_server.sql @@ -692,7 +692,7 @@ CREATE TABLE ) ENGINE = InnoDB; /* 鉴权策略中的资源标签关联信息 */ -CRAETE TABLE `auth_strategy_label` ( +CREATE TABLE `auth_strategy_label` ( `strategy_id` VARCHAR(128) NOT NULL COMMENT 'strategy id', `key` VARCHAR(128) NOT NULL COMMENT 'tag key', `value` TEXT NOT NULL COMMENT 'tag value', @@ -701,7 +701,7 @@ CRAETE TABLE `auth_strategy_label` ( ) ENGINE = InnoDB; /* 鉴权策略中的资源标签关联信息 */ -CRAETE TABLE `auth_strategy_function` ( +CREATE TABLE `auth_strategy_function` ( `strategy_id` VARCHAR(128) NOT NULL COMMENT 'strategy id', `function` VARCHAR(256) NOT NULL COMMENT 'server provider function name', PRIMARY KEY (`strategy_id`, `function`) @@ -1061,4 +1061,4 @@ CREATE TABLE `mtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `name` (`group_name`, `name`) - ) ENGINE = InnoDB; \ No newline at end of file + ) ENGINE = InnoDB;