如何在 CF9 ORM 中定义 Not Null 列?

发布于 2024-08-02 18:53:12 字数 92 浏览 2 评论 0原文

我尝试将 @required true 添加到属性中,但 CF9 ORM 生成的表仍然为 Nullable。

有什么方法可以使列成为不可为空的列吗?谢谢。

I tried added @required true to a property, but the table generated by CF9 ORM is still Nullable.

Any way to make a column a non-nullable column? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈年往事 2024-08-09 18:53:12

@notnull tr​​ue

  • 可选
  • 默认值: false
  • info:一个布尔值,指定是否应为此列添加 notnull 约束。

@notnull true

  • optional
  • default: false
  • info: A Boolean value that specifies whether a notnull constraint should be added for this column.
堇年纸鸢 2024-08-09 18:53:12

如果您使用的是 Javadoc 样式:

@notnull true

如果您没有使用 Javadoc 样式,则可以向属性添加属性:

notnull="true"

当使用 notnull 时,我还将其加倍:

required="true"

这当然不是强制性的 - 我只是认为这使意图更加明确。

http://help.adobe。 com/en_US/ColdFusion/9.0/Developing/WSB7BEC0B4-8096-498d-8F9B-77C88878AC6C.html

If you're using the Javadoc style:

@notnull true

and if you're not you can add an attribute to the property:

notnull="true"

When using notnull I also double it up with a:

required="true"

It certainly isn't mandatory - I just think it makes the intent more clear.

http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSB7BEC0B4-8096-498d-8F9B-77C88878AC6C.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文