aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-04-06 10:40:14 +0200
committerYves Senn <yves.senn@gmail.com>2015-04-06 10:42:44 +0200
commit51eacc71c7d2a6d0fc23556b32e12a21ee49b948 (patch)
tree5d49984b4a332be6656e4031a8140ae9c48d1609 /activerecord/CHANGELOG.md
parente527688d19f7f11780a6d01a45e6625c34eb8e7d (diff)
parent8c1180731f26e09a5163cfe96b7726c9e425207b (diff)
downloadrails-51eacc71c7d2a6d0fc23556b32e12a21ee49b948.tar.gz
rails-51eacc71c7d2a6d0fc23556b32e12a21ee49b948.tar.bz2
rails-51eacc71c7d2a6d0fc23556b32e12a21ee49b948.zip
Merge pull request #19652 from vngrs/pluralize_foreign_key_table_name_bug
use singular table name if pluralize_table_names is setted as false whil...
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8793d6de70..780c34147d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Foreign key related methods in the migration DSL respect
+ `ActiveRecord::Base.pluralize_table_names = false`.
+
+ Fixes #19643.
+
+ *Mehmet Emin İNAÇ*
+
* Reduce memory usage from loading types on pg.
Fixes #19578.