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

#idObject

Returns the primary key value.



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

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

#id=(value) ⇒ Object

Sets the primary key value.



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

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)


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

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.



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

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

#id_in_databaseObject



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

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

#id_wasObject

Returns the primary key previous value.



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

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.



10
11
12
13
14
# File 'lib/active_record/attribute_methods/primary_key.rb', line 10

def to_key
  sync_with_transaction_state
  key = id
  [key] if key
end