method
cached_counter_attribute_name
Ruby on Rails latest stable (v7.1.3.2)
-
0 notes -
Class: ActiveRecord::Associations::HasManyAssociation
cached_counter_attribute_name(reflection = reflection())
private
Hide source
# File activerecord/lib/active_record/associations/has_many_association.rb, line 94 def cached_counter_attribute_name(reflection = reflection()) if reflection.options[:counter_cache] reflection.options[:counter_cache].to_s else "#{reflection.name}_count" end end