Commit 82fbb8a3 by 仲光辉

fea: 执行 SQL.

parent 90e03a5c
# # 2022.05.25
# # 2022.05.25
......@@ -5173,6 +5173,32 @@
# modify send_status tinyint(1) default 0 null comment '发送状态: 0:成功 1:失败 2:暂存';
# create table excel_import_digest_record
# (
# excel_import_md5_record_uuid bigint(19) not null comment '主键uuid'
# primary key,
# type tinyint(1) not null comment '类型: 1:收款账单导入; 2:付款账单导入; 3:电费账单导入; 4:配电服务费导入 在此系统是一个枚举',
# record_digest_value varchar(150) not null comment '记录摘要值. etc. md5值',
# remark varchar(200) null comment '备注',
# expire_time datetime null comment '过期时间 可用字段执行数据清除',
# is_delete tinyint(1) default 0 null comment '是否删除: 0:未删 1:已删除 default:0',
# create_time datetime default CURRENT_TIMESTAMP null comment '创建时间',
# create_uuid char(32) null comment '创建人',
# creator_name varchar(64) null comment '创建人姓名',
# update_uuid char(32) null comment '修改人',
# updater_name varchar(64) null comment '更新人姓名',
# update_time datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '修改时间'
# )
# comment 'excel 导入 摘要信息记录列表';
#
# create index idx_record_digest_value
# on mfg.excel_import_digest_record (record_digest_value);
#
# create index idx_type
# on mfg.excel_import_digest_record (type);
### 线上数据已经执行 执行时间: 2022.10.31 17:45
......
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