我有以下型號:belongs_to在Rails 5中創建關聯嗎?
class User
has_many :items
end
class Item
belongs_to :user
end
內create_table
爲items
我:
t.belongs_to :person
我用Rails 5,我看到這個自動創建person_id
的items
表中的索引。但是,根據這個SO thread,這不應該發生。
答案是不正確的,或者這是添加到Rails 5(或某些Rails 4.x版本)?
'person_id'在遷移和類是用戶。這是正確的嗎?因爲如果是這樣,這改變了事情。 – lcguida