mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Do not use primary key on insertion when it's nil
This commit is contained in:
@@ -258,11 +258,11 @@ module ActiveRecord
|
||||
# Creates a record with values matching those of the instance attributes
|
||||
# and returns its id.
|
||||
def create
|
||||
if self.id.nil? && connection.prefetch_primary_key?(self.class.table_name)
|
||||
if id.nil? && connection.prefetch_primary_key?(self.class.table_name)
|
||||
self.id = connection.next_sequence_value(self.class.sequence_name)
|
||||
end
|
||||
|
||||
attributes_values = arel_attributes_values
|
||||
attributes_values = arel_attributes_values(!id.nil?)
|
||||
|
||||
new_id = if attributes_values.empty?
|
||||
self.class.unscoped.insert connection.empty_insert_statement_value
|
||||
|
||||
Reference in New Issue
Block a user