summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/tasks/db.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake
index 20e7782..6bb4bcb 100644
--- a/lib/tasks/db.rake
+++ b/lib/tasks/db.rake
@@ -3,7 +3,7 @@ require "yaml"
namespace :db do
desc 'backup database (rake db:backup["production"]'
task :backup, :env do |key, value|
- environment = value[:env] || 'development'
+ environment = value[:env] || 'qa'
sh "cap #{environment} postgresql:backup"
end