Module: ActiveRecord::AttributeMethods::PrimaryKey

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

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Methods included from ActiveSupport::Concern

append_features, class_methods, extended, included

Instance Method Details

#idObject

Returns the primary key value.



18
19
20
21
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 18

def id
  sync_with_transaction_state
  _read_attribute(self.class.primary_key) if self.class.primary_key
end

#id=(value) ⇒ Object

Sets the primary key value.



24
25
26
27
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 24

def id=(value)
  sync_with_transaction_state
  _write_attribute(self.class.primary_key, value) if self.class.primary_key
end

#id?Boolean

Queries the primary key value.

Returns:

  • (Boolean)


30
31
32
33
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 30

def id?
  sync_with_transaction_state
  query_attribute(self.class.primary_key)
end

#id_before_type_castObject

Returns the primary key value before type cast.



36
37
38
39
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 36

def id_before_type_cast
  sync_with_transaction_state
  read_attribute_before_type_cast(self.class.primary_key)
end

#id_in_databaseObject



47
48
49
50
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 47

def id_in_database
  sync_with_transaction_state
  attribute_in_database(self.class.primary_key)
end

#id_wasObject

Returns the primary key previous value.



42
43
44
45
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 42

def id_was
  sync_with_transaction_state
  attribute_was(self.class.primary_key)
end

#to_keyObject

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



12
13
14
15
# File 'activerecord/lib/active_record/attribute_methods/primary_key.rb', line 12

def to_key
  key = id
  [key] if key
end