Commit 40c48449 authored by kongfm's avatar kongfm

数据库字段添加和修改

parent 5d71d5fe
...@@ -457,4 +457,30 @@ ...@@ -457,4 +457,30 @@
INSERT INTO cb_data_dictionary (sequence_nbr,code,name,type,type_desc) VALUES (1213,'1213','支队长','XFRYGW','消防人员岗位'); INSERT INTO cb_data_dictionary (sequence_nbr,code,name,type,type_desc) VALUES (1213,'1213','支队长','XFRYGW','消防人员岗位');
</sql> </sql>
</changeSet> </changeSet>
<changeSet author="kongfm" id="2021-09-15-kongfm-1">
<preConditions onFail="MARK_RAN">
<tableExists tableName="cb_org_usr"/>
</preConditions>
<comment>BUG 2889 机场单位主键不为long 导致一系列报错,修改主键类型</comment>
<sql>
alter table cb_org_usr MODIFY sequence_nbr BIGINT(32);
</sql>
</changeSet>
<changeSet author="kongfm" id="2021-09-15-kongfm-2">
<preConditions onFail="MARK_RAN">
<tableExists tableName="cb_dynamic_form_column" />
<not>
<primaryKeyExists primaryKeyName="sequence_nbr" tableName="cb_dynamic_form_column"/>
</not>
</preConditions>
<comment>优化项958 值班区域字段添加</comment>
<sql>
INSERT INTO cb_dynamic_form_column (sequence_nbr, field_code, field_name, field_type, group_id, query_strategy, not_null, block, group_code, rec_date, is_delete) VALUES ('132828674811007', 'dutyArea', '值班区域', 'input', '132828674811', 'like', b'0', b'0', 'dutyPerson', '2021-09-14 02:29:15', b'0');
INSERT INTO cb_dynamic_form_column (sequence_nbr, field_code, field_name, field_type, group_id, query_strategy, not_null, block, group_code, rec_date, is_delete) VALUES ('132828674811008', 'dutyAreaId', '值班区域Id', 'input', '132828674811', 'eq', b'1', b'0', 'dutyPerson', '2021-09-14 02:29:15', b'0');
INSERT INTO cb_dynamic_form_column (sequence_nbr, field_code, field_name, field_type, group_id, query_strategy, not_null, block, group_code, rec_date, is_delete) VALUES ('132828674810009', 'dutyArea', '值班区域', 'input', '132828674810', 'like', b'0', b'0', 'dutyCar', '2021-09-14 02:29:15', b'0');
INSERT INTO cb_dynamic_form_column (sequence_nbr, field_code, field_name, field_type, group_id, query_strategy, not_null, block, group_code, rec_date, is_delete) VALUES ('132828674810010', 'dutyAreaId', '值班区域Id', 'input', '132828674810', 'eq', b'1', b'0', 'dutyCar', '2021-09-14 02:29:15', b'0');
</sql>
</changeSet>
</databaseChangeLog> </databaseChangeLog>
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