aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyan Wallace <rywall@gmail.com>2015-03-15 16:03:56 -0700
committerRyan Wallace <rywall@gmail.com>2015-03-17 10:43:26 -0700
commit7ab36f4532c891e8a4bdaee8924a197311ff25ff (patch)
treebe5515f76dd555cf9685ef1f2d390aa9a9aeed7c /activerecord/CHANGELOG.md
parent80f66d405ce0e7c9be1ddf599104b9bcfe6c0e88 (diff)
downloadrails-7ab36f4532c891e8a4bdaee8924a197311ff25ff.tar.gz
rails-7ab36f4532c891e8a4bdaee8924a197311ff25ff.tar.bz2
rails-7ab36f4532c891e8a4bdaee8924a197311ff25ff.zip
Add config.active_record.dump_schemas.
Fixes db:structure:dump when using schema_search_path and PostgreSQL extensions. Closes #17157.
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 73e171f3ba..07714538fb 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Add `config.active_record.dump_schemas` to fix `db:structure:dump`
+ when using schema_search_path and PostgreSQL extensions.
+
+ Fixes #17157.
+
+ *Ryan Wallace*
+
* Renaming `use_transactional_fixtures` to `use_transactional_tests` for clarity.
Fixes #18864.