Flowdock
method

increment_counter

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::BelongsToAssociation
increment_counter(counter_cache_name) private

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 68
        def increment_counter(counter_cache_name)
          if foreign_key_present?
            klass.increment_counter(counter_cache_name, target_id)
            if target && !stale_target?
              target.increment(counter_cache_name)
            end
          end
        end
Register or log in to add new notes.