diff options
author | Brian Smith <bsmith@swig505.com> | 2010-07-27 14:27:15 -0700 |
---|---|---|
committer | Brian Smith <bsmith@swig505.com> | 2010-07-27 14:27:15 -0700 |
commit | 1793b21479d29ec29bd47c37ee68cb6ebdb71617 (patch) | |
tree | 553ea64fad83ee2435c6c6b5e4a988916c172259 /activerecord/lib | |
parent | e7920a3bde47f1f788fc8d6b8cb00861a78047f8 (diff) | |
download | rails-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')
-rw-r--r-- | activerecord/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 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 |