method
update_counters
v8.0.0 -
Show latest stable
- Class:
ActiveRecord::Associations::BelongsToAssociation
update_counters(by)private
No documentation available.
# File activerecord/lib/active_record/associations/belongs_to_association.rb, line 103
def update_counters(by)
if require_counter_update? && foreign_key_present?
if target && !stale_target?
target.increment!(reflection.counter_cache_column, by, touch: reflection.options[:touch])
else
update_counters_via_scope(klass, owner._read_attribute(reflection.foreign_key), by)
end
end
end