method

cached_counter_attribute_name

rails latest stable - Class: ActiveRecord::Associations::HasManyAssociation

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

cached_counter_attribute_name(reflection = reflection())
private

No documentation available.

# 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