method

query_constraints_list

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ClassMethods
query_constraints_list() public

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/persistence.rb, line 499
      def query_constraints_list # :nodoc:
        @query_constraints_list ||= if base_class? || primary_key != base_class.primary_key
          primary_key if primary_key.is_a?(Array)
        else
          base_class.query_constraints_list
        end
      end
Register or log in to add new notes.