I have a Django app running on Heroku.
Usually I can just run python manage.py dbshell
on my local machine and then do DROP TABLE <app_table>
. But I can't do this on Heroku.
How can I do that for an app running on Heroku without deleting the whole database and resyncing?
Note: Heroku is a PostgreSQL db. I haven't been able to get Postgres working on Mountain Lion so transferring the database from my local machine isn't an option :(