gpt4 book ai didi

php - 如何为 Propel 中的时间戳列指定 defaultValue 为 "now"?

转载 作者:可可西里 更新时间:2023-11-01 13:34:57 24 4
gpt4 key购买 nike

这是我对 Propel 模式的表定义。 modified 列具有 timestamp 类型(PHP 中的 DateTime),我想为 now 分配一个默认值.我尝试将其设置为“现在”,但使用 propel-gen insert-sql 命令时出现错误:

"Syntaxt error or access violation: 1067 Invalid default value for 'modified'.

有人知道我如何为 Propel 中的时间戳列设置默认值吗?

<table name="mashup_setting">
<!-- omitted previous column definition -->
<column name="modified" type="timestamp" required="true" defaultValue="now" />
</table>

最佳答案

在较新的 Propel 版本中,您可以像这样指定您的列:

<column name="created" type="TIMESTAMP" defaultExpr="CURRENT_TIMESTAMP" />

然后它是跨数据库兼容的。

关于php - 如何为 Propel 中的时间戳列指定 defaultValue 为 "now"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9166055/

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