class Post | |
has_many :comments | |
has_many :tags, :as => :taggable | |
class Comment | |
belongs_to :post | |
has_many :tags, :as => :taggable | |
class Tag | |
belongs_to :taggable, :polymorphic => true | |
#not needed | |
#class Tagging | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment