aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorGrace Liu <graceliu@yahoo.com>2012-10-12 15:57:41 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-29 15:08:29 -0200
commite7a6b92959012ffde730b2daa38ecd006570779c (patch)
treea989967669a11f2cae063f77e9387acdc9c102f8 /activerecord/CHANGELOG.md
parent6ed23ea5d4969e25707bdf22dfcbc355e5daf194 (diff)
downloadrails-e7a6b92959012ffde730b2daa38ecd006570779c.tar.gz
rails-e7a6b92959012ffde730b2daa38ecd006570779c.tar.bz2
rails-e7a6b92959012ffde730b2daa38ecd006570779c.zip
fixed support for DATABASE_URL for rake db tasks
Backport for #7521 - added tests to confirm establish_connection uses DATABASE_URL and Rails.env correctly even when no arguments are passed in. - updated rake db tasks to support DATABASE_URL, and added tests to confirm correct behavior for these rake tasks. (Removed establish_connection call from some tasks since in those cases the :environment task already made sure the function would be called) - updated Resolver so that when it resolves the database url, it removes hash values with empty strings from the config spec (e.g. to support connection to postgresql when no username is specified). - updated ResolverTest to use current_adapter? to check the type of the current adapter.
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 aa68934099..c762210941 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.9 (unreleased)
+* Fixed support for DATABASE_URL environment variable for rake db tasks. *Grace Liu*
+
* Fix bug where `update_columns` and `update_column` would not let you update the primary key column.
*Henrik Nyh*