Sha256: 4ac79952c1ae885c67b163b72b1fdf35a1697f7ee87a3eb81d00ac119283a5a0

Contents?: true

Size: 402 Bytes

Versions: 122

Compression:

Stored size: 402 Bytes

Contents

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

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

Version data entries

122 entries across 119 versions & 23 rubygems

Version Path
spree-0.0.9 vendor/rails/activerecord/test/fixtures/tagging.rb
spree-0.2.0 vendor/rails/activerecord/test/fixtures/tagging.rb