Running a Django app on Heroku. Locally, I'm using the db.sqlite3 db, while on Heroku, it's the PostgreSQL.
I have one migration, reflecting locally, but not in Heroku, where it keeps giving me an error that "it can't find a field". I haven't configured PostgreSQL in any special way, so far I just ran
heroku run python manage.py migrate
and that seemed to do the trick.
How can I make the field change update in Heroku's db?