Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMichael Mykytyn
23,440 PointsActive Record Relationship challenge
Hi
This is the challenge Question:
Let's say we have a BlogPost model and a Comment model that represents comments someone might leave on a blog post. The comments table includes a blog_post_id column. Please setup the relationships correctly.
This is my answer:
class BlogPost < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :blog_post_id
end
This is the error I"m getting:
Bummer! Remember, belongs_to
always wants the singular version of the relationship.
Any clue as to what is going wrong?
TIA
Mike
3 Answers
Dino Paškvan
Courses Plus Student 44,108 PointsComments belong to blog posts:
belongs_to :blog_post
not blog_post_id
s.
Michael Mykytyn
23,440 PointsThanks for the help Dino!
Mike
Michael Mykytyn
23,440 PointsSorry Dino still not correct. Could you post your complete answer?
Dino Paškvan
Courses Plus Student 44,108 PointsThe rest of your code is correct, it's just that you need to remove the _id
part:
class BlogPost < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :blog_post
end