gpt4 book ai didi

postgresql - 如何使用liquibase中的一些默认时间戳更新日期列

转载 作者:行者123 更新时间:2023-11-29 14:07:43 25 4
gpt4 key购买 nike

如何在 liquibase 中使用默认值 (2010-01-01 00:00:00) 更新日期列。我知道要获取当前日期。您能否建议我使用一些默认值更新列。

 <property name="now" value="SYSDATE" dbms="postgresql">

<changeSet>
<update>
<column name="date_created" valueDate="${now}"/>
</update>
</changeSet>

最佳答案

valueDate 属性支持三种格式:

  1. 年月月日
  2. hh:mm:ss
  3. YYYY-MM-DDThh:mm:ss

在你的情况下这有效:

<column name="date_created" valueDate="2010-01-01" />

关于postgresql - 如何使用liquibase中的一些默认时间戳更新日期列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12892139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com