Fix warning message when db/schema.rb doesn't exist [#5625 state:resolved]

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
This commit is contained in:
Brian Candler
2010-09-20 09:03:49 +01:00
committed by Santiago Pastorino
parent d82d98dcd5
commit a348ffcb2d

View File

@@ -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