Commit 855fe2c1 authored by maoying's avatar maoying

修改预案表中设备编码字段长度

parent 86ac4bcd
...@@ -713,4 +713,14 @@ ...@@ -713,4 +713,14 @@
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4;
</sql> </sql>
</changeSet> </changeSet>
<changeSet author="maoying" id="1612272587000-7">
<preConditions onFail="MARK_RAN">
<columnExists tableName="c_plan_operation_record" columnName="equipment_code" />
</preConditions>
<comment>c_plan_operation_record table equipment_code MODIFY</comment>
<sql>
ALTER TABLE `c_plan_operation_record`
MODIFY COLUMN `equipment_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '装备code' ;
</sql>
</changeSet>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
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