Skip to content

Commit

Permalink
fix: 修改polaris_server.sql中的语法错误 (#1379)
Browse files Browse the repository at this point in the history
  • Loading branch information
Windeal committed Aug 21, 2024
1 parent 890503a commit 9af1772
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions store/mysql/scripts/polaris_server.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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`)
Expand Down Expand Up @@ -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;
) ENGINE = InnoDB;

0 comments on commit 9af1772

Please sign in to comment.