CakePHP 数据库命名约定?
我有两张桌子: 文档类型_签证 users_visas
现在我需要第三个来连接上面两个。
根据 CakePHP 命名约定,该表 doctypes_visas_users_visas 的合适名称是什么?
谢谢。
I have two tables:
doctypes_visas
users_visas
Now I need I third one that joins the two above.
According to CakePHP naming conventions, what will be the suitable name for this table doctypes_visas_users_visas?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 CakePHP 文档,如果关联是
hasAndBelongsToMany 类型关系,你是对的。该名称的名称确实应该是
doctypes_visas_users_visas
。来自文档:
As per the CakePHP documentation, if the association is a
hasAndBelongsToMany
type relationship, you are correct. The name's name should indeed bydoctypes_visas_users_visas
.From the documentation: