From f4ddc496da0b7c1907a3345343918d7b9b39f5c5 Mon Sep 17 00:00:00 2001 From: Martin Grandrath Date: Thu, 18 Oct 2012 10:56:44 +0200 Subject: Use `Rails.env` instead of `ENV['RAILS_ENV']`; #7951 `ENV['RAILS_ENV']` is not defined unless explicitly specified on the command line when running `rake db:structure:load`. This patch lets the rake task retrieve the environment from `Rails.env` which defaults to "development". --- activerecord/lib/active_record/railties/databases.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/railties/databases.rake b/activerecord/lib/active_record/railties/databases.rake index 6d43b232ad..987bb558e5 100644 --- a/activerecord/lib/active_record/railties/databases.rake +++ b/activerecord/lib/active_record/railties/databases.rake @@ -412,7 +412,7 @@ db_namespace = namespace :db do # desc "Recreate the databases from the structure.sql file" task :load => [:environment, :load_config] do - env = ENV['RAILS_ENV'] || 'test' + env = Rails.env abcs = ActiveRecord::Base.configurations filename = ENV['DB_STRUCTURE'] || File.join(Rails.root, "db", "structure.sql") -- cgit v1.2.3