instiki/vendor/rails/activerecord/test/fixtures/tagging.rb
2007-01-22 07:43:50 -06:00

6 lines
301 B
Ruby

class Tagging < ActiveRecord::Base
belongs_to :tag, :include => :tagging
belongs_to :super_tag, :class_name => 'Tag', :foreign_key => 'super_tag_id'
belongs_to :invalid_tag, :class_name => 'Tag', :foreign_key => 'tag_id'
belongs_to :taggable, :polymorphic => true, :counter_cache => true
end