Commit 761b7096 authored by xixinzhao's avatar xixinzhao

更新计划不更新创建时间

parent 451f75d9
...@@ -303,4 +303,13 @@ ...@@ -303,4 +303,13 @@
ALTER TABLE `p_check_report` MODIFY COLUMN `id` bigint(30) NOT NULL AUTO_INCREMENT COMMENT '主键'; ALTER TABLE `p_check_report` MODIFY COLUMN `id` bigint(30) NOT NULL AUTO_INCREMENT COMMENT '主键';
</sql> </sql>
</changeSet> </changeSet>
<changeSet author="xxz" id="20211201-1">
<preConditions onFail="MARK_RAN">
<columnExists tableName="p_plan" columnName="create_date"/>
</preConditions>
<comment>modify p_plan COLUMN create_date</comment>
<sql>
ALTER TABLE `p_plan` MODIFY COLUMN `create_date` datetime DEFAULT CURRENT_TIMESTAMP 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