I just started using Heroku with Django, and it seems wonderful. However, when I change my existing models, Iām not sure how to launch these changes in the Heroku environment. Syncdb works great when adding all new database tables, but how do I modify existing tables?
I found out that Heroku only provides psql access to a dedicated database, so there is no question. I have not tried South, but this seems like a solution.
So, I think I'm asking how to make changes to the database with Django and Heroku?
source share