Skip to content

Commit

Permalink
[ISSUE##12864] Fix missing semicolon on line 64 and remove extra comm…
Browse files Browse the repository at this point in the history
…a on line 159 in mysql-schema.sql file (#12866)
  • Loading branch information
94pengchengxin authored Nov 21, 2024
1 parent a24e7ac commit bfc6f1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distribution/conf/mysql-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ CREATE TABLE `config_info_gray` (
UNIQUE KEY `uk_configinfogray_datagrouptenantgray` (`data_id`,`group_id`,`tenant_id`,`gray_name`),
KEY `idx_dataid_gmt_modified` (`data_id`,`gmt_modified`),
KEY `idx_gmt_modified` (`gmt_modified`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='config_info_gray'
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='config_info_gray';

/******************************************/
/* 表名称 = config_info_beta */
Expand Down Expand Up @@ -156,7 +156,7 @@ CREATE TABLE `his_config_info` (
`op_type` char(10) DEFAULT NULL COMMENT 'operation type',
`tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段',
`encrypted_data_key` varchar(1024) NOT NULL DEFAULT '' COMMENT '密钥',
`publish_type` varchar(50) DEFAULT 'formal' COMMENT 'publish type gray or formal',,
`publish_type` varchar(50) DEFAULT 'formal' COMMENT 'publish type gray or formal',
`ext_info` longtext DEFAULT NULL COMMENT 'ext info',
PRIMARY KEY (`nid`),
KEY `idx_gmt_create` (`gmt_create`),
Expand Down

0 comments on commit bfc6f1b

Please sign in to comment.