Module: ActiveRecord::AttributeMethods::PrimaryKey

Extended by:
ActiveSupport::Concern
Defined in:
lib/active_record/attribute_methods/primary_key.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#to_keyObject

Returns this record’s primary key value wrapped in an Array if one is available



7
8
9
10
# File 'lib/active_record/attribute_methods/primary_key.rb', line 7

def to_key
  key = send(self.class.primary_key)
  [key] if key
end