aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-01-05 14:19:01 -0700
committerSean Griffin <sean@seantheprogrammer.com>2015-01-05 14:19:01 -0700
commit08d6eb2370bf44d451503bc58b58c0192d820341 (patch)
treeb9b0ab6e01d2a39a0838a6543c332d2b705d4164 /activerecord/lib/active_record
parent1c8192669fd6880041f87ba8ee2aae52b1f7edd8 (diff)
parentf634c1fcf4796f633685f6801e260e0e792e547e (diff)
downloadrails-08d6eb2370bf44d451503bc58b58c0192d820341.tar.gz
rails-08d6eb2370bf44d451503bc58b58c0192d820341.tar.bz2
rails-08d6eb2370bf44d451503bc58b58c0192d820341.zip
Merge pull request #18349 from jdelStrother/primarykeyless
Fix rollback of primarykey-less tables
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/transactions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/transactions.rb b/activerecord/lib/active_record/transactions.rb
index 1c48196762..9cef50029b 100644
--- a/activerecord/lib/active_record/transactions.rb
+++ b/activerecord/lib/active_record/transactions.rb
@@ -378,7 +378,7 @@ module ActiveRecord
thaw unless restore_state[:frozen?]
@new_record = restore_state[:new_record]
@destroyed = restore_state[:destroyed]
- write_attribute(self.class.primary_key, restore_state[:id])
+ write_attribute(self.class.primary_key, restore_state[:id]) if self.class.primary_key
end
end
end