在 Ruby on Rails 中生成多对多模型
有没有办法生成预定义多对多关系的 Rails 模型?我知道如何在事后将其添加到 Active Record,但最好立即在数据库迁移和 Active Record 模型中定义它。
Is there a way to generate a Rails model with a many to many relationship predefined? I know how to add it to the Active Record after the fact but it would be nice to have it defined in the DB migration and the Active Record model right off the bat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,您不需要连接表的 id,因此请确保添加
:id => false |t|
如果您使用 Rails,
您将有两个索引,但您想要的是
UPDATE
create_join_table
而不是 创建该(无 id)表。Remember that you do not want an id for the join table, so make sure to add
:id => false |t|
If you use rails
you will have two indexes, but what you want is
UPDATE
create_join_table
instead to create that (id-less) table.您可以使用 Rails 指南中的此参考。这里是链接。此外,您还需要使用迁移为这些模型手动创建连接表。
例如
You can use this reference from the Rails Guides.Here is the link. Also you will need to manually create the join table for those models using a migration.
e.g