Flowdock
method

primary_keys

Importance_0
v5.0.0.1 - 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 590
      def primary_keys(table_name) # :nodoc:
        raise ArgumentError unless table_name.present?

        schema, name = extract_schema_qualified_name(table_name)

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