Skip to content

Instantly share code, notes, and snippets.

@brentmc79
Created April 13, 2009 04:20
Show Gist options
  • Save brentmc79/94254 to your computer and use it in GitHub Desktop.
Save brentmc79/94254 to your computer and use it in GitHub Desktop.
class Tag < ActiveRecord::Base
has_many :taggings, :dependent => :destroy
has_many :books, :through => :tagings, :source => :taggable, :source_type => "Book"
has_many :movies, :through => :tagings, :source => :taggable, :source_type => "Movie"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment