CakePHP - 允许belongsTo外键为空值

发布于 2024-12-10 21:19:32 字数 108 浏览 4 评论 0原文

我的数据库中有一个名为通知的表和一个名为注释的表。通知在笔记上有一个外键引用,我希望 CakePHP 认识到该值可以为 null,我是否需要在模型中进行任何设置才能使其生效?或者只需要对数据库进行约束?

I have a table called notifications in my DB and a table called notes. Notifications has a foreign key reference on notes, I want CakePHP to recognize that this value can be null, do I need to set anything up in my model for this to take effect? Or only the constraint on the DB is required?

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

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

发布评论

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

评论(1

凝望流年 2024-12-17 21:19:33

我经常这样做。您将遇到的唯一问题是 Cake 将空值存储为空字符串,这对外键不利。我写了一个简单、愚蠢的 NullableBehavior 来解决这个问题。

I do this fairly frequently. The only problem that you'll run into is that Cake stores empty values as empty strings which is bad for foreign keys. I wrote a simple, stupid NullableBehavior to fix that.

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