Django Heroku Error "Your models have changes that are not yet reflected in a migration" Django Heroku Error "Your models have changes that are not yet reflected in a migration" python python

Django Heroku Error "Your models have changes that are not yet reflected in a migration"


You need to first create the migrations locally, add them to your repository, commit the files with the new migrations and then push to heroku.

The sequence is something like this:

1. (add/modify some someapp/models.py)2. python manage.py makemigrations someapp3. python manage.py migrate4. git add someapp/migrations/*.py (to add the new migration file)5. git commit -m "added migration for app someapp"6. git push heroku7. heroku run python manage.py migrate


  1. Make migrations locally
$ python manage.py makemigrations && python manage.py migrate
  1. Commit changes and push it on the server
$ git add --all
$ git commit -m "Fixed migrate error"
$ git push heroku master
  1. Now make migrations on the server
$ heroku run python manage.py makemigrations
$ heroku run python manage.py migrate

You have also be sûre that you did'nt ignore that migrations path in your

.gitingnore


It sounds like you ran makemigrations after you made changes to your model but before you had an initial migration file. Try to revert your app to the state it was before you added the new model and run makemigrations again to create the initial migration. Then add your updates back in and run makemigrations once more. This will create a second migration from your initial data structure to the new updated one. Then try your deployment.

https://docs.djangoproject.com/en/1.7/topics/migrations/#adding-migrations-to-apps