grails 不生成外键
我对这种奇怪的行为真的很困惑! 问题是,我有一个 grails 应用程序,它在我的本地计算机上创建我的 MYSQL 数据库中的所有 FK。
但是当我尝试在另一台机器上运行它时,FK 没有被创建!
有什么原因吗?一些权限问题?有什么方法可以调试 grails 表的创建,以便我能弄清楚这一点吗?
谢谢!
I`m really confused here about this weird behavior!
The thing is, I have a grails app which in my local machine it is creating all FK in my MYSQL db.
But when I try running it in another machines the FK are not being created!
Some reason for that? some permission problem? is there any way to debug the creation of the grails tables so I can figure this out?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的数据库可能使用 ENGINE = MyISAM,这将导致无法创建外键。
尝试将引擎更改为 InnoDB。
Your database is probably using ENGINE = MyISAM, which will cause foreign keys to not be created.
Try changing your engine to InnoDB.