Django south: repeat the first migration

I made a mistake in declaring the application model and now you need to restart the initial migration.

Is there any other way than deleting the tables of this application and writing to the south migration history?

My setup:

Django 1.3.1

South 0.7.3

+5
source share
1 answer
./manage.py migrate myapp zero

Docs

+11
source

All Articles