Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to empty DB in heroku

I have a Postgres database on Heroku. It is one of the free beta ones. Locally, when testing, I often run rake db:drop && rake db:create && rake db:migrate as a way to reset the database.

However, when I try to run this on Heroku, I get the error:

Couldn't drop mydatabaseid : #<PG::Error: FATAL:  permission denied for database "postgres"
  DETAIL:  User does not have CONNECT privilege.

Uh, ok, so how am I supposed to completely reset my database, migrations and everything?

share|improve this question

marked as duplicate by casperOne Jun 13 '12 at 13:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 5 down vote accepted

pg:reset

db:reset will try to drop the database, which is not something that the Heroku permissions allow.

share|improve this answer
   
Great!... where'd you find that? I read their docs here: devcenter.heroku.com/articles/heroku-postgresql – Jeff Jun 12 '12 at 16:24
2  
In my brain somewhere - no idea where. – Neil Middleton Jun 13 '12 at 15:10
1  
Here is Heroku documentation: devcenter.heroku.com/articles/rake – weston Oct 3 '12 at 23:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.