Skip to content

Instantly share code, notes, and snippets.

@brentmc79
Created April 13, 2009 04:25
Show Gist options
  • Save brentmc79/94259 to your computer and use it in GitHub Desktop.
Save brentmc79/94259 to your computer and use it in GitHub Desktop.
class Book < ActiveRecord::Base
has_many :taggings, :as => :taggable
has_many :tags, :through => :taggings
end
class Movie < ActiveRecord::Base
has_many :taggings, :as => :taggable
has_many :tags, :through => :taggings
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment