Created
April 16, 2016 03:46
-
-
Save t27duck/a141087c39f70c830a2f8b8b0e286bd6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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