aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorGuo Xiang Tan <tgx_world@hotmail.com>2018-08-22 21:00:01 +0800
committerGuo Xiang Tan <tgx_world@hotmail.com>2018-08-22 22:06:08 +0800
commit20bb397e00dad9dfdb38d0c8dd73062b448c31e3 (patch)
tree1c78f25256c8cd1353097f35edaf848db304e6a0 /activerecord/CHANGELOG.md
parent96ac7e4cdee004bcd19cb63b3e3396329e3b39ed (diff)
downloadrails-20bb397e00dad9dfdb38d0c8dd73062b448c31e3.tar.gz
rails-20bb397e00dad9dfdb38d0c8dd73062b448c31e3.tar.bz2
rails-20bb397e00dad9dfdb38d0c8dd73062b448c31e3.zip
Add database configuration to disable advisory locks.
https://github.com/rails/rails/issues/31190
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index f6a6aa05a9..71dcecd346 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,13 @@
+* Add database configuration to disable advisory locks.
+
+ ```
+ production:
+ adapter: postgresql
+ advisory_locks: false
+ ```
+
+ *Guo Xiang*
+
* SQLite3 adapter `alter_table` method restores foreign keys.
*Yasuo Honda*