aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Candler <b.candler@pobox.com>2010-09-20 09:03:49 +0100
committerSantiago Pastorino <santiago@wyeworks.com>2010-09-24 17:40:03 -0300
commita348ffcb2dd3819c76756d0ce0e88bc858e89ca5 (patch)
treed09fe50035d5c1487ff4efa8c6e513d00a6016d0
parentd82d98dcd53704a2d61463768f8690eaa5acfd2b (diff)
downloadrails-a348ffcb2dd3819c76756d0ce0e88bc858e89ca5.tar.gz
rails-a348ffcb2dd3819c76756d0ce0e88bc858e89ca5.tar.bz2
rails-a348ffcb2dd3819c76756d0ce0e88bc858e89ca5.zip
Fix warning message when db/schema.rb doesn't exist [#5625 state:resolved]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
-rw-r--r--activerecord/lib/active_record/railties/databases.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/railties/databases.rake b/activerecord/lib/active_record/railties/databases.rake
index ccaa1f01f6..12bfe3c738 100644
--- a/activerecord/lib/active_record/railties/databases.rake
+++ b/activerecord/lib/active_record/railties/databases.rake
@@ -356,7 +356,7 @@ namespace :db do
if File.exists?(file)
load(file)
else
- abort %{#{file} doesn't exist yet. Run "rake db:migrate" to create it then try again. If you do not intend to use a database, you should instead alter #{Rails.root}/config/boot.rb to limit the frameworks that will be loaded}
+ abort %{#{file} doesn't exist yet. Run "rake db:migrate" to create it then try again. If you do not intend to use a database, you should instead alter #{Rails.root}/config/application.rb to limit the frameworks that will be loaded}
end
end
end