class ActiveRecord::Associations::HasManyAssociation

def delete_count(method, scope)

def delete_count(method, scope)
  if method == :delete_all
    scope.delete_all
  else
    scope.update_all(nullified_owner_attributes)
  end
end