gpt4 book ai didi

mysql - ColdFusion 9 ORM : Default value does not work for strings

转载 作者:可可西里 更新时间:2023-11-01 07:08:41 25 4
gpt4 key购买 nike

我正在尝试创建一个具有默认值的新字符串属性:

<cfproperty fieldtype="column" name="showIn" ormtype="string" default="credentials" notnull="true" required="false" />

在 ORMReload() 之后,该列出现在数据库中,但没有默认值。


我预计:

showIn VARCHAR(255) NOT NULL DEFAULT "credentials"

我得到:

showIn VARCHAR(255) NOT NULL


我正在使用 MySQL 5.1.63 和 ColdFusion 9。(Adobe)

我是不是漏掉了什么?

最佳答案

使用 dbdefault 而不是 default:

<cfproperty fieldtype="column" name="showIn" ormtype="string" dbdefault="credentials" notnull="true" required="false" />

来自documentation :

dbdefault: This sets the default value of a column in the table when schema is exported.

关于mysql - ColdFusion 9 ORM : Default value does not work for strings,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46236818/

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