diff options
author | Damien Mathieu <42@dmathieu.com> | 2014-01-08 11:08:08 +0100 |
---|---|---|
committer | Damien Mathieu <42@dmathieu.com> | 2014-01-08 14:37:07 +0100 |
commit | a334425caff9b2140d5e99fcfc2eb8c4ab10bdfa (patch) | |
tree | 45e2b00b6b57f54ae268d6eaf76de04ca3110a38 /activerecord/lib/active_record/railties | |
parent | a03fed88f780922e3a3ab7b22af945f29a711ae4 (diff) | |
download | rails-a334425caff9b2140d5e99fcfc2eb8c4ab10bdfa.tar.gz rails-a334425caff9b2140d5e99fcfc2eb8c4ab10bdfa.tar.bz2 rails-a334425caff9b2140d5e99fcfc2eb8c4ab10bdfa.zip |
create/drop test and development databases only if RAILS_ENV is nil
Closes #13625
Diffstat (limited to 'activerecord/lib/active_record/railties')
-rw-r--r-- | activerecord/lib/active_record/railties/databases.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/railties/databases.rake b/activerecord/lib/active_record/railties/databases.rake index 3d795ca689..58dfa2c5a5 100644 --- a/activerecord/lib/active_record/railties/databases.rake +++ b/activerecord/lib/active_record/railties/databases.rake @@ -12,7 +12,7 @@ db_namespace = namespace :db do end end - desc 'Create the database from DATABASE_URL or config/database.yml for the current Rails.env (use db:create:all to create all databases in the config)' + desc 'Creates the database from DATABASE_URL or config/database.yml for the current RAILS_ENV (use db:create:all to create all databases in the config). Without RAILS_ENV it defaults to creating the development and test databases.' task :create => [:load_config] do ActiveRecord::Tasks::DatabaseTasks.create_current end @@ -23,7 +23,7 @@ db_namespace = namespace :db do end end - desc 'Drops the database using DATABASE_URL or the current Rails.env (use db:drop:all to drop all databases)' + desc 'Drops the database from DATABASE_URL or config/database.yml for the current RAILS_ENV (use db:drop:all to drop all databases in the config). Without RAILS_ENV it defaults to dropping the development and test databases.' task :drop => [:load_config] do ActiveRecord::Tasks::DatabaseTasks.drop_current end |