aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-09-11 10:59:50 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-09-11 10:59:50 -0700
commitf2a44ade14f995d0574bedf79c8d1bee520f0306 (patch)
treed662aaa76fe2e64fcb4f34b7496465df66d033c1 /activerecord/CHANGELOG.md
parent616ba15f2cb89588ae3b0a55452f4059f2c118b1 (diff)
parentdf9e135281463f11756ba7bf8f399523dfc1ee3c (diff)
downloadrails-f2a44ade14f995d0574bedf79c8d1bee520f0306.tar.gz
rails-f2a44ade14f995d0574bedf79c8d1bee520f0306.tar.bz2
rails-f2a44ade14f995d0574bedf79c8d1bee520f0306.zip
Merge pull request #7564 from kennyj/using_mysqldump
Use mysqldump native commands when rake db:structure:dump. Closes #5547 Fixes database tasks config to use encoding instead of charset.
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.