Skip to content

Commit 450d4a0

Browse files
authored
v1.0.15
1 parent 5354561 commit 450d4a0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

deploy/docker-compose-x86_64/db/init.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -545,6 +545,15 @@ CREATE TABLE `w3_website_service` (
545545
PRIMARY KEY (`id`,`website_types`)
546546
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.服务配置';
547547

548+
ALTER table w3_users ADD user_type tinyint(1) DEFAULT 1 COMMENT '用户类型,1:普通用户,2:LDAP用户';
549+
CREATE TABLE `w3_sys_config` (
550+
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
551+
`sys_config_type` varchar(255) NOT NULL COMMENT '配置类型',
552+
`sys_config_info` varchar(255) NOT NULL COMMENT '配置内容',
553+
`sys_config_updatetime` datetime NOT NULL COMMENT '更新时间',
554+
PRIMARY KEY (`id`)
555+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='配置信息记录';
556+
548557
SET FOREIGN_KEY_CHECKS = 1;
549558

550559

0 commit comments

Comments
 (0)