aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2013-12-13 16:04:46 -0500
committerArthur Neves <arthurnn@gmail.com>2013-12-14 17:33:50 -0500
commitb3a806b7b2179fc588465fee728fe837cf8d4940 (patch)
tree5605c8276aa02fef80e7a34081938d70edad0e18 /activerecord/CHANGELOG.md
parent12affbe491e4ad7056c7bc1555cf223129cb2745 (diff)
downloadrails-b3a806b7b2179fc588465fee728fe837cf8d4940.tar.gz
rails-b3a806b7b2179fc588465fee728fe837cf8d4940.tar.bz2
rails-b3a806b7b2179fc588465fee728fe837cf8d4940.zip
db:test:clone and prepare must load environment
db:test:clone and db:test:prepare use ActiveRecord::Base. configurations, so we need to load the rails environment, otherwise the config wont be in place.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 4845150a24..5dc369ebf1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* db:test:clone and db:test:prepare must load Rails environment
+
+ db:test:clone and db:test:prepare use ActiveRecord::Base. configurations,
+ so we need to load the rails environment, otherwise the config wont be in place.
+
+ *arthurnn*
+
* Create a whitelist of delegable methods to `Array`.
Currently `Relation` directly delegates methods to `Array`. With this change,