method

update_through_counter?

update_through_counter?(method)
private

No documentation available.

# File activerecord/lib/active_record/associations/has_many_through_association.rb, line 109
        def update_through_counter?(method)
          case method
          when :destroy
            !through_reflection.inverse_updates_counter_cache?
          when :nullify
            false
          else
            true
          end
        end