Flowdock
method

primary_keys

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters
primary_keys(table_name) 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/connection_adapters/abstract_mysql_adapter.rb, line 478
      def primary_keys(table_name) # :nodoc:
        raise ArgumentError unless table_name.present?

        scope = quoted_scope(table_name)

        query_values(          SELECT column_name          FROM information_schema.key_column_usage          WHERE constraint_name = 'PRIMARY'            AND table_schema = #{scope[:schema]}            AND table_name = #{scope[:name]}          ORDER BY ordinal_position.strip_heredoc, "SCHEMA")
      end
Register or log in to add new notes.