如何进行 eloquent laravel 同表关系迁移?
如果不是有一个用户表,其中一个用户可以关注多个用户。我会有一个奶牛表,其中每头奶牛都有一个单亲父亲和一个单亲母亲,父母可以生很多孩子。我是否需要一个外部表来存储它,或者我可以在我的奶牛表中添加字段cow_father_id和cow_mother_id吗? -指的是用同一个cows表建立2个cows表的雄辩关系 这次迁移会是什么样子?
if instead of having a users table where one user can follow many users. I would have a cows table where each cow has a single father and a single mother, where the parents can have many children. do I require an external table to store that or can I just add in my cows table the fields cow_father_id and cow_mother_id?
-referring to making 2 eloquent relationships of cows table with same cows table
and what this migration would look like?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做。我也测试过。
迁移
模型
You could do this. I've tested as well.
Migration
Model