Skip to content

Instantly share code, notes, and snippets.

@t27duck
Created April 16, 2016 03:46
Show Gist options
  • Save t27duck/a141087c39f70c830a2f8b8b0e286bd6 to your computer and use it in GitHub Desktop.
Save t27duck/a141087c39f70c830a2f8b8b0e286bd6 to your computer and use it in GitHub Desktop.
class Post
has_many :cat_relations
has_many :categories, through: :cat_relations
end
class Category
has_many :cat_relations
has_many :posts, through: :cat_relations
end
class CatRelation
belongs_to :post
belongs_to :category
end
# ...
p = Post.first
p.categories # This returns the Category objects associated with the Post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment