aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-01-07 03:08:03 -0800
committerYves Senn <yves.senn@gmail.com>2014-01-07 03:08:03 -0800
commitab21f42245b1e6fa9ccf03d4ebe190803add1569 (patch)
treead0902bc0e7077d8c92ebe3834d46d71a25e3321 /activerecord/CHANGELOG.md
parent3a33e8ea85f025d5ba575318583d1038889a2ba1 (diff)
parenteb589fed6f4950d441bc6aed8dfaaeffec061322 (diff)
downloadrails-ab21f42245b1e6fa9ccf03d4ebe190803add1569.tar.gz
rails-ab21f42245b1e6fa9ccf03d4ebe190803add1569.tar.bz2
rails-ab21f42245b1e6fa9ccf03d4ebe190803add1569.zip
Merge pull request #13597 from prathamesh-sonpatki/hstore_migration
Make change_table use object of current database adapter
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index efe29fbc88..add5334f39 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,11 @@
+* `change_table` now uses the current adapter's `update_table_definition`
+ method to retrieve a specific table definition.
+ This ensures that `change_table` and `create_table` will use
+ similar objects.
+ Fixes #13577 and #13503.
+
+ *Nishant Modak*, *Prathamesh Sonpatki*, *Rafael Mendonça França*
+
* Fixed ActiveRecord::Store nil conversion TypeError when using YAML coder.
In case the YAML passed as paramter is nil, uses an empty string.