Am totally new to ruby on rails... I've followed this discussion --> Ruby on Rails 4, Devise, and profile pages. And i scaffolded profile, Yet got an error click here for image
any thoughts??
Am totally new to ruby on rails... I've followed this discussion --> Ruby on Rails 4, Devise, and profile pages. And i scaffolded profile, Yet got an error click here for image
any thoughts??
Seems to me like You don't have user_id
attribute in Your profiles_table
. Check again Your migration.
def change
create_table :profiles do |t|
t.timestamps null: false
end
end
end -->this is profiles table and i don't have any user_id there what should i do?? – santhosh kumar Feb 23 '16 at 14:46