Sha256: 211e3104578aee96033252a4031ad83c3725afd06e7a94cdccbb38419bb89f2f

Contents?: true

Size: 469 Bytes

Versions: 6

Compression:

Stored size: 469 Bytes

Contents

class Pet < ActiveRecord::Base
  attr_accessor :current_user

  self.primary_key = :pet_id
  belongs_to :owner, :touch => true
  has_many :toys
  has_many :pet_treasures
  has_many :treasures, through: :pet_treasures
  has_many :persons, through: :treasures, source: :looter, source_type: 'Person'

  class << self
    attr_accessor :after_destroy_output
  end

  after_destroy do |record|
    Pet.after_destroy_output = record.current_user
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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