I have a has_many :through model that works perfectly.

  has_many :varietals
  has_many :grapes, :through => :varietals, :dependent => :destroy

I would like to call another action instead of :destroy. In fact, I don't want to nullify the item OR destroy it, I want to update the record status field from 1 to 0 instead of destroy the record.

How to call a custom method instead of destroy ? I suppose I can do that in the model itself... Thanks.

Where to put this method ? In the master model or in the model where the record will be destroyed ?

EDIT:

I'm sorry but I think I didn't enough explain my problem. My problem is not only to so something after the master model is destroyed. I want to custom the destroy action in the Varietal model itself even if the master record is not destroyed.

Something like:

class Varietal < ActiveRecord::Base

    private
      def destroy
        self.update_attributes(:status => 0)
      end
end

Actually this action is not called...

link|improve this question

70% accept rate
feedback

3 Answers

up vote 0 down vote accepted

has_many :dependent is limited to only a few options. According to the documentation:

:dependent If set to :destroy all the associated objects are destroyed alongside this object by calling their destroy method. If set to :delete_all all associated objects are deleted without calling their destroy method. If set to :nullify all associated objects’ foreign keys are set to NULL without calling their save callbacks. If set to :restrict this object raises an ActiveRecord::DeleteRestrictionError exception and cannot be deleted if it has any associated objects.

If using with the :through option, the association on the join model must be a belongs_to, and the records which get deleted are the join records, rather than the associated records.

It looks like you would need to alter the destroy method to update the status field.

link|improve this answer
I updated my first message and explain more... How to change the destroy method ? – muqaddar Feb 17 at 12:43
Never mind if you saw my previous comment (deleted)... Phyo and Shingara have the right take. – ScottJShea Feb 17 at 17:28
I'm sorry, but the problem is not for associations in my model. If I have only one model, I can't overwrite the destroy method to change its behaviour. This does nothing. Adding a before or after callback won't change the destroy: the item will be destroyed. – muqaddar Feb 17 at 21:52
feedback

You just need add a callback on before_destroy or after_destroy and manipulate your associations. By example

after_destroy :do_on_grapes

def do_on_grapes
  grapes.map(&:to_do)
end
link|improve this answer
feedback

You can use before_destroy to put your custom logic there. E.g.,

before_destroy :reset_status

def reset_status
  ...
end

Check here for more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.