Django south: Re-run first migration

django, django-models, django-south

Solution

./manage.py migrate myapp zero

Docs

Problem

I made a mistake in the model declaration of an app and now need to re-run the initial migration. Is there another way than deleting tables of this app and the entry in the migration history of south? My setup: Django 1.3.1 South 0.7.3

Original source