cakePHP Bake 和数据库表之一遇到问题
我正在使用 Bake 为我的数据库表创建模型。 我遇到了一个小问题。
我有 25 个表......
我计划烘焙模型,直到烘焙开始为其中一个数据库表赋予模型、文件和类自己的名称。
例如,数据库中的表被命名为:“risk_manager”
(它与我在烘焙时定义的其他表相关联)
但是,该模型显示为一个名为“risk.php”的文件,并且类名被称为“风险”(但它映射到正确的表。)
为什么会发生这种情况......?
I am using Bake to create models for my database tables.
I have run into a little problem.
I have 25 tables ....
I strated baking the models until for one of the database tables the bake started giving a name of it own to the model,file and class.
For example ,the table in database is named : 'risk_manager'
(It has association with other tables which i'm defining while baking)
However the model for this turns up as a file called "risk.php" and the class name is called "risk" (but it is mapped to the correct table.)
Why is this happening...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定这是否是原因,但 Cake 希望表名是复数,因此“
risk_managers
”是正确的。I'm not quite sure if that's the reason, but Cake expects table names to be plural, so "
risk_managers
" would be correct.