Files
ProxyPanel/sql/mod/20200412.sql
2020-08-05 03:20:31 +08:00

12 lines
836 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
rename table `email_log` to `notification_log`;
alter table `notification_log` COMMENT = '通知投递记录';
alter table `notification_log` CHANGE `type` `type` TINYINT(4) NOT NULL DEFAULT '1' COMMENT '类型1-邮件、2-ServerChan、3-Bark';
-- 加入Bark通知
insert into `config` VALUES ('104', 'bark_key', '');
update `config` SET `name` = 'is_node_offline' where `config`.`id` = 37;
update `config` SET `name` = 'is_notification', `value` = '0' where `config`.`id` = 39;
update `config` SET `name` = 'is_email_filtering',`value` = '0' where `config`.`id` = 58;
update `config` SET `name` = 'detection_check_times' where `config`.`id` = 68;
update `config` SET `name` = 'is_activate_account', `value` = '0' where `config`.`id` = 73;
update `config` SET `name` = 'offline_check_times', `value` = '10' where `config`.`id` = 98;