What is the best way to migrate data in django
Another technique is to use the dumpdata and loaddata arguments to manage.py, killing your database in-between: python manage.py dumpdata > dump.json With an external tool, drop any affected tables, or kill the whole db python manage.py loaddata dump.json See manage.py docs for more.