ruby-on-rails – 对于belongs_to / has_many关系的迁移,需要使用add_index吗? (Rails 3.2,Active Record)

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 对于belongs_to / has_many关系的迁移,需要使用add_index吗? (Rails 3.2,Active Record)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题很简单,但我找不到明确的答案.

我建立了每日优惠Rails应用程序.

>每笔交易都有很多产品(has_many)
>每个产品都属于一笔交易

Rails Guides开始,我将在迁移过程中使用它:

  1. class CreateDeal < ActiveRecord::Migration
  2. def change
  3. create_table :deals do |t|
  4. t.string :name
  5. t.timestamps
  6. end
  7.  
  8. create_table :products do |t|
  9. t.belongs_to :Deal
  10. t.timestamps
  11. end
  12. end
  13. end

自动,Rails /活动记录会在产品表中添加一列Transactions_id对吗?

我是否需要通过添加到我的迁移add_index手动(如下所示)在此deals_id列上添加索引,还是因为我设置的belongs_to / has_many关系而“自动”完成?

  1. create_table :products do |t|
  2. t.belongs_to :Deal
  3. t.timestamps
  4.  
  5. add_index :products,:deals_id
  6. end

解决方法

您确实需要自己添加索引…但是,如果您对模型使用命令行生成器并使用belongs_to,则Rails会将索引添加到迁移中…

例如

  1. rails g model product deal:belongs_to

会产生

  1. class CreateProducts < ActiveRecord::Migration
  2. def change
  3. create table :products do |t|
  4. t.belongs_to :deal
  5.  
  6. t.timestamps
  7. end
  8. add_index :products,:deal_id
  9. end
  10. end

猜你在找的Ruby相关文章