Commit 7f712862 authored by KeYong's avatar KeYong

添加排空时间脚本

parent 9abd0bfc
...@@ -1217,4 +1217,16 @@ ...@@ -1217,4 +1217,16 @@
ADD pump_device_name varchar(1500) DEFAULT NULL COMMENT '消防泵装置名称s'; ADD pump_device_name varchar(1500) DEFAULT NULL COMMENT '消防泵装置名称s';
</sql> </sql>
</changeSet> </changeSet>
<changeSet author="ky" id="1587351418888">
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="f_equipment" columnName="drain_duration"/>
</not>
</preConditions>
<comment>f_equipment add column drain_duration</comment>
<sql>
alter table `f_equipment` add column `drain_duration` double DEFAULT NULL COMMENT '排空时长(分钟)';
</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