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 trial

Ruby ActiveRecord Basics Migrations and Relationships Relationships

Michael Mykytyn
Michael Mykytyn
23,440 Points

Active 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

Comments belong to blog posts:

belongs_to :blog_post

not blog_post_ids.

Michael Mykytyn
Michael Mykytyn
23,440 Points

Thanks for the help Dino!

Mike

Michael Mykytyn
Michael Mykytyn
23,440 Points

Sorry Dino still not correct. Could you post your complete answer?

The 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