[Answered ]-Unable to make migrations after changes in table for django 1.8

2👍

If there are no performed migrations in history, solution is simple:

  1. Check structure of your tables in database
  2. Modify your models (undo some recent changes) so they will correspond to your database structure
  3. Remove all migrations (don’t forget *.pyc files)
  4. run makemigrations on your app
  5. run migrate --fake-initial
  6. redo all changes to your models
  7. run makemigrations again
  8. run migrate

Leave a comment