instance method
after_destroy
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
after_destroy()
Is called after Base.destroy (and all the attributes have been frozen).
class Contact < ActiveRecord::Base after_destroy { |record| logger.info( "Contact #{record.id} was destroyed." ) } end
Source
# File activerecord/lib/active_record/callbacks.rb, line 305
def after_destroy() end
Defined in activerecord/lib/active_record/callbacks.rb line 305
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Callbacks