Skip to content

Commit

Permalink
v1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
smarttang authored Jun 5, 2022
1 parent 5354561 commit 450d4a0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deploy/docker-compose-x86_64/db/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,15 @@ CREATE TABLE `w3_website_service` (
PRIMARY KEY (`id`,`website_types`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.服务配置';

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

SET FOREIGN_KEY_CHECKS = 1;


Expand Down

0 comments on commit 450d4a0

Please sign in to comment.