Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Created September 2, 2013 07:38
Show Gist options
  • Save douglasmiranda/6410163 to your computer and use it in GitHub Desktop.
Save douglasmiranda/6410163 to your computer and use it in GitHub Desktop.
Deleting Django South Migration (poor memory)
$ python manage.py shell
>>> from south.models import MigrationHistory
>>> m = MigrationHistory.objects.get(migration='<migration_name>')
>>> m.delete()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment