Flowdock
method

decrement_counters_before_last_save

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::BelongsToAssociation
decrement_counters_before_last_save() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/belongs_to_association.rb, line 45
      def decrement_counters_before_last_save
        if reflection.polymorphic?
          model_was = owner.attribute_before_last_save(reflection.foreign_type).try(:constantize)
        else
          model_was = klass
        end

        foreign_key_was = owner.attribute_before_last_save(reflection.foreign_key)

        if foreign_key_was && model_was < ActiveRecord::Base
          update_counters_via_scope(model_was, foreign_key_was, -1)
        end
      end
Register or log in to add new notes.