aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorBrian Smith <bsmith@swig505.com>2010-07-27 14:27:15 -0700
committerBrian Smith <bsmith@swig505.com>2010-07-27 14:27:15 -0700
commit1793b21479d29ec29bd47c37ee68cb6ebdb71617 (patch)
tree553ea64fad83ee2435c6c6b5e4a988916c172259 /activerecord/lib/active_record
parente7920a3bde47f1f788fc8d6b8cb00861a78047f8 (diff)
downloadrails-1793b21479d29ec29bd47c37ee68cb6ebdb71617.tar.gz
rails-1793b21479d29ec29bd47c37ee68cb6ebdb71617.tar.bz2
rails-1793b21479d29ec29bd47c37ee68cb6ebdb71617.zip
Frameworks are loaded in application.rb rather than config.rb according to Rails 3 conventions.
Diffstat (limited to 'activerecord/lib/active_record')
-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 2c17c74ab4..d61cc520b7 100644
--- a/activerecord/lib/active_record/railties/databases.rake
+++ b/activerecord/lib/active_record/railties/databases.rake
@@ -333,7 +333,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