2016-02-23 114 views

回答

0

對我而言您的profiles_table中沒有user_id屬性。再次檢查您的遷移。

+0

class CreateProfiles def change
create_table:profiles do | t |
t.timestamps空:假
結束
結束
結束 - >這是譜表,我沒有任何的user_id有我應該怎麼辦? –

+0

將't.integer:user_id,null:false'添加到您的遷移中,回滾上一個,並且您應該很好。 順便說一句我認爲你應該閱讀http://guides.rubyonrails.org/association_basics.html 你也可能有其他懸而未決的問題,但你的關聯肯定是錯誤的。 – WRK