Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Michael 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,107 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,107 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