aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-09-08 00:02:29 +0900
committerkennyj <kennyj@gmail.com>2012-09-12 02:17:04 +0900
commitccc6910cb034efc6b749e1ae82c748085a671fa9 (patch)
treee071e1335b67e06fb737f3f62d4b499c48a31304 /activerecord/CHANGELOG.md
parent616ba15f2cb89588ae3b0a55452f4059f2c118b1 (diff)
downloadrails-ccc6910cb034efc6b749e1ae82c748085a671fa9.tar.gz
rails-ccc6910cb034efc6b749e1ae82c748085a671fa9.tar.bz2
rails-ccc6910cb034efc6b749e1ae82c748085a671fa9.zip
Use native mysqldump command for 'rake db:structure:dump'.
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 6f7b2cb108..e94db776a5 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Use native `mysqldump` command instead of `structure_dump` method
+ when dumping the database structure to a sql file. Fixes #5547.
+
+ *kennyj*
+
* Attribute predicate methods, such as `article.title?`, will now raise
`ActiveModel::MissingAttributeError` if the attribute being queried for
truthiness was not read from the database, instead of just returning false.