Skip to content

Instantly share code, notes, and snippets.

@seivan
Created February 11, 2010 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seivan/301032 to your computer and use it in GitHub Desktop.
Save seivan/301032 to your computer and use it in GitHub Desktop.
class Post
has_many :comments
has_many :tags, :through => :taggings :as => :taggable
class Comment
belongs_to :post
has_many :tags, :through => :taggings :as => :taggable
class Tag
has_many :taggings
class Tagging
belongs_to :taggable, :polymorphic => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment