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开始,我将在迁移过程中使用它:

class CreateDeal < ActiveRecord::Migration
    def change
      create_table :deals do |t|
        t.string :name
        t.timestamps
      end

      create_table :products do |t|
        t.belongs_to :Deal
        t.timestamps
      end
    end
   end

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

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

create_table :products do |t|
  t.belongs_to :Deal
  t.timestamps

  add_index :products,:deals_id 
end

解决方法

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

例如

rails g model product deal:belongs_to

会产生

class CreateProducts < ActiveRecord::Migration
  def change
    create table :products do |t|
      t.belongs_to :deal

      t.timestamps
    end
    add_index :products,:deal_id
  end
end
原文链接:https://www.f2er.com/ruby/267183.html

猜你在找的Ruby相关文章