0

この状況を想像してみましょう。articleモデルとsortモデルがあり、それらは 1 対多の関連付けを持っています。

article移行は次のとおりです。

create_table :articles do |t|
  t.string :title      
  t.string :content
  t.belongs_to :sort

  t.timestamps
end

sort移行は次のとおりです。

create_table :sorts do |t|
    t.string :title  

    t.timestamps
end

というarticle名前のファイルが追加されsort_idます。

sort_id今、テーブルのフィールドにインデックスを追加したいと思いますarticles

次のように実現できるかどうか:

   add_index :articles, :sort, :unique => true 

また

  add_index :articles, :sort_id, :unique => true 
4

1 に答える 1