aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-06-20 17:41:00 -0400
committerGitHub <noreply@github.com>2017-06-20 17:41:00 -0400
commit890de7705257323d05c8831b8c1ab43433b0ba89 (patch)
tree1359497c4fe8798416dc51acd96de4456c7b890c /activerecord/CHANGELOG.md
parentec8e38943b360312c8db97ca5d1ad4b09eba6683 (diff)
parentf08bc757ebe108df46d76d6fd0029546539f817f (diff)
downloadrails-890de7705257323d05c8831b8c1ab43433b0ba89.tar.gz
rails-890de7705257323d05c8831b8c1ab43433b0ba89.tar.bz2
rails-890de7705257323d05c8831b8c1ab43433b0ba89.zip
Merge pull request #28926 from bogdanvlviv/fix-destroy-with-locking_column-value-null
Fix destroy with locking_column value null
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index c65deffa8b..f361e44fcd 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Fix destroying existing object does not work well when optimistic locking enabled and
+ `locking column` is null in the database.
+
+ *bogdanvlviv*
+
* Use bulk INSERT to insert fixtures for better performance.
*Kir Shatrov*