-3
我是全新的紅寶石軌道上...我已經按照這個討論 - >Ruby on Rails 4, Devise, and profile pages。而我腳手架配置文件,但得到了一個錯誤click here for image紅寶石軌道:porfile創作與devise
任何想法??
我是全新的紅寶石軌道上...我已經按照這個討論 - >Ruby on Rails 4, Devise, and profile pages。而我腳手架配置文件,但得到了一個錯誤click here for image紅寶石軌道:porfile創作與devise
任何想法??
對我而言您的profiles_table
中沒有user_id
屬性。再次檢查您的遷移。
class CreateProfiles def change
create_table:profiles do | t |
t.timestamps空:假
結束
結束
結束 - >這是譜表,我沒有任何的user_id有我應該怎麼辦? –
將't.integer:user_id,null:false'添加到您的遷移中,回滾上一個,並且您應該很好。 順便說一句我認爲你應該閱讀http://guides.rubyonrails.org/association_basics.html 你也可能有其他懸而未決的問題,但你的關聯肯定是錯誤的。 – WRK