Skip to content Skip to sidebar Skip to footer

Django Heroku Makemigrations Ignoring Changes In Models

I deleted two models from models.py, and when I run makemigrations and migrate locally, everything is fine. When I run makemigrations on Heroku, I get the following message, where

Solution 1:

As I have written many times here, you must not run makemigrations on Heroku. Run it locally, commit the result, and then​ run migrate on Heroku.


Post a Comment for "Django Heroku Makemigrations Ignoring Changes In Models"