Commit 0922e70c by mercymodest

feat:- add sql

parent 57f51e18
alter table sys_user
alter table sys_user
......@@ -73,6 +73,30 @@ alter table t_events
alter table t_events
add completed_time datetime null comment '(杂项)完成时间 UTC+0';
alter table t_events
add is_from_parse_ics tinyint(1) default 0 null comment '是否来源于解析: ics 协议文件 0-否 1-是';
alter table t_events
add sync_email varchar(200) null comment '同步的邮箱';
alter table sys_oper_log
modify method text null comment '方法名称';
alter table sys_oper_log
modify request_method text null comment '请求方式';
alter table sys_oper_log
modify oper_url text null comment '请求URL';
alter table sys_oper_log
modify oper_param text null comment '请求参数';
alter table sys_oper_log
modify json_result text null comment '返回参数';
alter table sys_oper_log
modify error_msg text null comment '错误消息';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment