Sha256: 1283c0af519c44dbb661828d29016b500bc183500d8fbe9f8d71ddf35636e1ce

Contents?: true

Size: 702 Bytes

Versions: 8

Compression:

Stored size: 702 Bytes

Contents

# test that attr_readonly isn't called on the :taggable polymorphic association
module Taggable
end

class Tagging < ActiveRecord::Base
  belongs_to :tag, -> { includes(: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 :blue_tag, -> { where :tags => { :name => 'Blue' } }, :class_name => 'Tag', :foreign_key => :tag_id
  belongs_to :tag_with_primary_key, :class_name => 'Tag', :foreign_key => :tag_id, :primary_key => :custom_primary_key
  belongs_to :taggable, :polymorphic => true, :counter_cache => :tags_count
  has_many :things, :through => :taggable
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/models/tagging.rb
ibm_db-5.1.0-x86-mingw32 test/models/tagging.rb
ibm_db-5.0.5-x86-mingw32 test/models/tagging.rb
ibm_db-5.0.4-x86-mingw32 test/models/tagging.rb
ibm_db-5.0.3-x86-mingw32 test/models/tagging.rb
ibm_db-5.0.2-x86-mingw32 test/models/tagging.rb
ibm_db-3.0.5-x86-mingw32 test/models/tagging.rb
ibm_db-3.0.5 test/models/tagging.rb