Commit afd50f7a by 仲光辉

style: 补充已经执行过的 SQL.

parent 13771cba
# # 2022.05.25 # # 2022.05.25
...@@ -5023,6 +5023,22 @@ ...@@ -5023,6 +5023,22 @@
# alter table bill # alter table bill
# modify verification_time datetime null comment '核验时间'; # modify verification_time datetime null comment '核验时间';
# CREATE TABLE `contract_remote_meter_reading` (
# `meter_reading_date` int(2) DEFAULT NULL COMMENT '抄表日期',
# `region_uuid` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '城市uuid',
# `region_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '所属城市名,冗余region表,记得同步更新',
# `is_delete` tinyint(1) DEFAULT '0' COMMENT '是否删除:0-未删;1-已删除',
# `create_uuid` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '创建人',
# `update_uuid` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '修改人',
# `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
# `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
# KEY `region_uuid_index` (`region_uuid`)
# ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='合同 -- 合同抄表配置信息表';
# ALTER TABLE `bill_charge_notice_history`
# MODIFY COLUMN `build_time` datetime NULL DEFAULT NULL COMMENT '生成日期' AFTER `build_type`;
### 线上数据已经执行 执行时间: 2022.10.09 16:56 ### 线上数据已经执行 执行时间: 2022.10.09 16:56
......
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