Im working on a RoR3 webapp on heroku. How do I empty the database?
|
feedback
|
|
To drop the database, if you are using SHARED_DATABASE_URL:
To recreate the database with nothing in it:
To populate the database with your seed data:
You can combine the last two into one action by executing this:
You can do this with pretty much any rake command, but there are exceptions. For example, More information can be found in Heroku's documentation. | |||||||||||||||
feedback
|
|
Heroku has deprecated the
It's a little confusing because you use the literal text
| |||
feedback
|
|
To drop the database:
To recreate the database:
To seed the database:
**Final step
| |||||||
feedback
|
|
Today the command
not working for shared plans, I'm resolve using
| |||
|
feedback
|