You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
1.1 KiB
13 lines
1.1 KiB
create table hl_config.sys_set (
|
|
id bigint(11) unsigned primary key auto_increment,
|
|
type varchar(200) not null comment '系统设置的键(全部大写字母和下划线组成)',
|
|
`value` varchar(500) not null comment '系统设置的值',
|
|
remark varchar(500) not null default '' comment '备注',
|
|
is_delete tinyint(2) not null default 0 comment '是否删除。0:未删;1:已删;',
|
|
create_time datetime not null default current_timestamp comment '创建时间',
|
|
update_time datetime not null default current_timestamp on update current_timestamp comment '修改时间'
|
|
) engine = InnoDB default charset = utf8mb4 comment = '系统设置';
|
|
|
|
-- 生产环境 CorpID 需要替换为正式试用版的 CorpID
|
|
-- INSERT INTO hl_config.sys_set (type, value, remark) VALUES ('TRIAL_VERSION_CORP_ID', 'ding07fba4ee63c8e35735c2f4657eb6378f', '试用版公司 ID(企业 CorpID),多个请用英文逗号分割');
|
|
-- INSERT INTO hl_config.sys_set (type, value, remark) VALUES ('TRIAL_VERSION_USE_DAY', '30', '试用版使用时长(单位:天)');
|
|
|