Commit 54aa5882 by mercymodest

feat:- add sql

parent acabcdd0
alter table t_device_group alter table t_device_group
...@@ -51,6 +51,14 @@ CREATE TABLE `t_magic_import_record` ...@@ -51,6 +51,14 @@ CREATE TABLE `t_magic_import_record`
) ENGINE = InnoDB ) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4 COMMENT ='魔法导入记录表'; DEFAULT CHARSET = utf8mb4 COMMENT ='魔法导入记录表';
alter table t_magic_import_record
add convert_result text null comment '转化结果';
alter table t_magic_import_record
modify convert_result text null comment '转化结果' after parse_result;
alter table t_email_callback_log alter table t_email_callback_log
add magic_import_record_id bigint null comment '魔法导入记录ID(t_magic_import_record#magic_import_record_id)'; add magic_import_record_id bigint null comment '魔法导入记录ID(t_magic_import_record#magic_import_record_id)';
......
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