From 120f1e0e9575d8c9f46a9706123adb91170a3d29 Mon Sep 17 00:00:00 2001 From: Brian Candler Date: Mon, 20 Sep 2010 09:03:49 +0100 Subject: [PATCH] Fix warning message when db/schema.rb doesn't exist [#5625 state:resolved] --- .../lib/active_record/railties/databases.rake | 2 +- 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 3c5981a..bc0c766 100644 --- a/activerecord/lib/active_record/railties/databases.rake +++ b/activerecord/lib/active_record/railties/databases.rake @@ -357,7 +357,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 -- 1.5.5.1