I am trying to migrate from Django 1.6 to Django 1.8. I was using South for managing migrations in Django 1.6. I have suc
Django 1.6
Django 1.8
South
migrations
To add to comment by @int_ua Add this as a dependency to the migration that is failing:
dependencies = [ ('contenttypes', '0002_remove_content_type_name'), ]
Then run migration again.