From 707118d8b5ee6e3336976b648ef804e0c917877d Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Wed, 14 Sep 2011 18:46:03 -0700 Subject: [PATCH] default to postgres db in heroku rake task --- lib/tasks/heroku.rake | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/heroku.rake b/lib/tasks/heroku.rake index 741b456cd..27c9ee0ab 100644 --- a/lib/tasks/heroku.rake +++ b/lib/tasks/heroku.rake @@ -5,6 +5,7 @@ namespace :heroku do command = "heroku config:add" CONFIG.each {|key, val| command << " #{key}=#{val} " if val } command << " HEROKU=true " + command << " DB=postgres " system command end end