在 Ruby on Rails 中生成多对多模型

发布于 2024-10-22 02:02:53 字数 95 浏览 2 评论 0原文

有没有办法生成预定义多对多关系的 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 技术交流群。

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

发布评论

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

评论(2

仙女 2024-10-29 02:02:53

请记住,您不需要连接表的 id,因此请确保添加 :id => false |t|

create_table assemblies_parts, :id => false do |t|
  t.integer :assembly_id
  t.integer :part_id
end

如果您使用 Rails,

rails generate model Assemblies_parts assembly:references part:references

您将有两个索引,但您想要的是

# Add table index
add_index :assemblies_parts, [:assembly_id, :part_id], :unique => true

UPDATE

Remember that you do not want an id for the join table, so make sure to add :id => false |t|

create_table assemblies_parts, :id => false do |t|
  t.integer :assembly_id
  t.integer :part_id
end

If you use rails

rails generate model Assemblies_parts assembly:references part:references

you will have two indexes, but what you want is

# Add table index
add_index :assemblies_parts, [:assembly_id, :part_id], :unique => true

UPDATE

青春如此纠结 2024-10-29 02:02:53

您可以使用 Rails 指南中的此参考。这里是链接。此外,您还需要使用迁移为这些模型手动创建连接表。

例如

    create_table :assemblies_parts, :force => true do |t|
      t.integer :assembly_id
      t.integer :part_id
    end

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

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