Commit a5f8b003 by mercy

feat: add sql.

parent 2691d7db
alter table t_device_group alter table t_device_group
...@@ -90,6 +90,13 @@ CREATE TABLE `t_send_email` ( ...@@ -90,6 +90,13 @@ CREATE TABLE `t_send_email` (
INDEX `idx_email` (`email`) INDEX `idx_email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='发送邮件表'; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='发送邮件表';
alter table t_send_email
add is_success tinyint(1) default 1 null comment '是否成功 0:失败 1:成功 default 1';
alter table t_send_email
add error_message 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