Commit c89119ca by 仲光辉

feat: add sql.

parent 780d467d
# alter table admin
# alter table admin
......@@ -4009,6 +4009,72 @@ CREATE INDEX `idx_business_uuid` ON `contract_change_info` (`business_uuid`);
CREATE INDEX `idx_operation_type` ON `contract_change_info` (`operation_type`);
alter table bill_charge_notice_history
add is_preview tinyint(1) default 0 null comment '是否预览 0:否 1:是';
alter table contract
add lease_effect_name varchar(50) null comment '租赁作用名称';
alter table contract
add rollback_contract_uuid bigint(19) default null comment '合同回退 uuid,{@link ContractPO#getUuid()} 撤销审批并删除合同时,使用此 合同uuid 实现回退合同到操作前的状态';
###### 租客列表字段
# ### 公司城市uuid信息(string):公司所在城市,公司租赁城市信息,region
# alter table company
# add company_region_uuid_info tinytext null comment '公司城市uuid信息(string):公司所在城市,公司租赁城市信息,region';
# ### 公司城市名称信息(string):公司所在城市,公司租赁城市信息 region
# alter table company
# add company_region_name_info tinytext null comment '公司城市名称信息(string):公司所在城市,公司租赁城市信息 region';
# ### 公司租赁合同项目uuid信息(string):公司租赁合同项目uuid信息,project_uuid_info
# alter table company
# add company_project_uuid_info tinytext null comment '公司租赁合同项目uuid信息(string):公司租赁合同项目uuid信息,project_uuid_info project';
# ### 公司租赁合同项目名称信息(string):公司租赁合同项目名称信息,project_name_info
# alter table company
# add company_project_name_info tinytext null comment '公司租赁合同项目名称信息(string):公司租赁合同项目名称信息,project_name_info project';
# ### 公司租赁合同楼层uuid信息(string):公司租赁合同楼层uuid信息,building_uuid_info
# alter table company
# add company_building_uuid_info tinytext null comment '公司租赁合同楼层uuid信息(string):公司租赁合同楼层uuid信息,building_uuid_info building';
# ### 公司租赁合同楼层名称信息(string):公司租赁合同楼层名称信息,building_name_info
# alter table company
# add company_building_name_info tinytext null comment '公司租赁合同楼层名称信息(string):公司租赁合同楼层名称信息,building_name_info building';
# ### 公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuidcompany_project_floor_sub_item_uuid_info
# alter table company
# add :公司租赁合同单元信息uuidcompany_project_floor_sub_item_uuid_info tinytext null comment '公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item';
# ### 公司租赁合同单元信息名称(string):公司租赁合同单元信息名称,company_project_floor_sub_item_obj_no_info
# alter table company
# add company_project_floor_sub_item_obj_no_info tinytext null comment '公司租赁合同单元信息名称(string):公司租赁合同单元信息名称, project_floor_sub_item';
#
# alter table company
# change :公司租赁合同单元信息uuidcompany_project_floor_sub_item_uuid_info company_project_floor_sub_item_uuid_info tinytext null comment '公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item';
#
# alter table company
# modify company_region_uuid_info text null comment '公司城市uuid信息(string):公司所在城市,公司租赁城市信息,region';
#
# alter table company
# modify company_region_name_info text null comment '公司城市名称信息(string):公司所在城市,公司租赁城市信息 region';
#
# alter table company
# modify company_project_uuid_info text null comment '公司租赁合同项目uuid信息(string):公司租赁合同项目uuid信息,project_uuid_info project';
#
# alter table company
# modify company_project_name_info text null comment '公司租赁合同项目名称信息(string):公司租赁合同项目名称信息,project_name_info project';
#
# alter table company
# modify company_building_uuid_info text null comment '公司租赁合同楼层uuid信息(string):公司租赁合同楼层uuid信息,building_uuid_info building';
#
# alter table company
# modify company_building_name_info text null comment '公司租赁合同楼层名称信息(string):公司租赁合同楼层名称信息,building_name_info building';
#
# alter table company
# modify company_project_floor_sub_item_uuid_info text null comment '公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item';
#
# alter table company
# modify company_project_floor_sub_item_obj_no_info text null comment '公司租赁合同单元信息名称(string):公司租赁合同单元信息名称, project_floor_sub_item';
......
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