Im working on a RoR3 webapp on heroku. How do I empty the database?

link|improve this question
feedback

4 Answers

up vote 60 down vote accepted

To drop the database, if you are using SHARED_DATABASE_URL:

heroku pg:reset SHARED_DATABASE_URL

To recreate the database with nothing in it:

heroku run rake db:migrate

To populate the database with your seed data:

heroku run rake db:seed

You can combine the last two into one action by executing this:

heroku run rake db:setup

You can do this with pretty much any rake command, but there are exceptions. For example, db:reset doesn't work via heroku rake. You have to use pg:reset instead.

More information can be found in Heroku's documentation.

link|improve this answer
when yous say your see data what do you mean? is there a way I can add default data into the DB? – user591338 Jan 27 '11 at 20:26
I'm using heroku free account and it tells me that i am not the owner of the DB – user591338 Jan 27 '11 at 20:36
@Abra: I meant 'seed data'. Also, db:drop doesn't work in heroku. Corrected instructions to use the proper beginning command. – Shaun Jan 27 '11 at 21:12
9  
Thank you. Actually, "heroku pg:reset --db SHARED_DATABASE_URL" did the trick. But you got me going in the right direction. – Jay Godse Mar 17 '11 at 22:17
1  
Actually you should be checking in your schema.rb and you should use: rake db:schema:load – Amala Dec 2 '11 at 23:06
show 3 more comments
feedback

Heroku has deprecated the --db option now, so now use:

heroku pg:reset SHARED_DATABASE --confirm {the name of your app}

It's a little confusing because you use the literal text SHARED_DATABASE but where I have written {the name of your app} substitute the name of your app. For example, if your app is called my_great_app then you use:

heroku pg:reset SHARED_DATABASE --confirm my_great_app
link|improve this answer
if you just paste skip the bit after (and including) the -- heroku will tell you what to type.. – baash05 Feb 1 at 22:48
feedback

To drop the database:

$ heroku pg:reset SHARED_DATABASE --confirm NAME_OF_THE_APP

To recreate the database:

$ heroku run rake db:migrate

To seed the database:

$ heroku run rake db:seed

**Final step

$ heroku restart
link|improve this answer
1  
I prefer this answer over any else's. This works perfectly in my scenario on Heroku, I believe it is highly under voted! – defaye Mar 24 at 16:04
It might be because heroku changed the syntax of these commands recently. – George Yacoub Mar 24 at 19:49
feedback

Today the command

heroku pg:reset --db SHARED_DATABASE_URL

not working for shared plans, I'm resolve using

heroku pg:reset SHARED_DATABASE
link|improve this answer
feedback

Your Answer

 
or
required, but never shown