Rerun a Django data migration
How would I rerun a data migration on Django 1.8+? If relevant, my migration is numbered 0011_my_data_migration.py and is the latest migration. Alasdair Fake back to the migration before the one you want to rerun. ./manage.py migrate --fake yourapp 0010_my_previous_data_migration Then rerun the migration. ./manage.py migrate yourapp 0011_my_data_migration Then you can fake back to the most recent migration that you have run. In your case, you said that 0011 was the latest, so you can skip this stage. ./manage.py migrate --fake yourapp 0014_my_latest_data_migration Note that depending on the