aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorDieter Komendera <dieter@komendera.com>2015-01-08 10:02:58 +0100
committerDieter Komendera <dieter@komendera.com>2015-01-08 10:02:58 +0100
commit99e57a8dccb700375c674c6c7872025f0022f0db (patch)
tree150f91e7b5d37a853e3a63825996656a30215b12 /activerecord/CHANGELOG.md
parent9892d445bcff57f0a8bd8eb467cb7bf8c40a285b (diff)
downloadrails-99e57a8dccb700375c674c6c7872025f0022f0db.tar.gz
rails-99e57a8dccb700375c674c6c7872025f0022f0db.tar.bz2
rails-99e57a8dccb700375c674c6c7872025f0022f0db.zip
Use `SCHEMA` instead of `DB_STRUCTURE` for specifiying structure file.
`rake test:load_structure` already uses `SCHEMA` and there's no need to maintain two different env vars.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3c4f06ccf8..e85df0f176 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Use `SCHEMA` instead of `DB_STRUCTURE` for specifiying structure file.
+
+ This makes the db:structure tasks consistent with test:load_structure.
+
+ *Dieter Komendera*
+
* Fix accessing of fixtures having non-string labels like Fixnum.
*Prathamesh Sonpatki*