aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-03-04 10:41:56 +0100
committerYves Senn <yves.senn@gmail.com>2013-03-06 15:12:20 +0100
commit854b74242c03b34df6b0107b23361b5c130b9550 (patch)
tree5adbeb7865a93947b7bac9d6c54dd9d2b7a17d6b /activerecord/CHANGELOG.md
parent4ce98432512d11ac2f0330e2313c2c031552ffff (diff)
downloadrails-854b74242c03b34df6b0107b23361b5c130b9550.tar.gz
rails-854b74242c03b34df6b0107b23361b5c130b9550.tar.bz2
rails-854b74242c03b34df6b0107b23361b5c130b9550.zip
`Connection#structure_dump` is no longer used. #9518
As of ccc6910c we use `mysqldump` to create the `structure.sql`. The old `#structure_dump` code is still in AR but never used. I removed all relevant parts from the code-base.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a0ca36788d..105bf6f88a 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
+* Remove `connection#structure_dump`, which is no longer used. *Yves Senn*
+
* Make it possible to execute migrations without a transaction even
if the database adapter supports DDL transactions.
Fixes #9483.