module Sequel::Plugins::AssociationDependencies::InstanceMethods

  1. lib/sequel/plugins/association_dependencies.rb

Methods

Public Instance

  1. after_destroy
  2. before_destroy

Public Instance methods

after_destroy ()

Run the delete and destroy association dependency actions for many_to_one associations.

[show source]
# File lib/sequel/plugins/association_dependencies.rb, line 80
def after_destroy
  super
  model.association_dependencies[:after_delete].each{|m| send(m).delete}
  model.association_dependencies[:after_destroy].each{|m| send(m).destroy}
end
before_destroy ()

Run the delete, destroy, and nullify association dependency actions for *_to_many associations.

[show source]
# File lib/sequel/plugins/association_dependencies.rb, line 88
def before_destroy
  model.association_dependencies[:before_delete].each{|m| send(m).delete}
  model.association_dependencies[:before_destroy].each{|m| send(m).destroy}
  model.association_dependencies[:before_nullify].each{|p| instance_eval(&p)}
  super
end