grails 不生成外键

发布于 2024-11-15 22:17:16 字数 182 浏览 2 评论 0原文

我对这种奇怪的行为真的很困惑! 问题是,我有一个 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 技术交流群。

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

发布评论

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

评论(1

郁金香雨 2024-11-22 22:17:16

您的数据库可能使用 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.

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