[Answer]-Django 1.6.1 and South

1👍

I assume you meant:

manage.py schemamigration app_name --auto --update

not

manage.py app_name --auto --update

You can specify a version with the migrate:

./manage.py migrate app_name 0014

or the full version name:

./manage.py migrate myapp 0014_change_charfield...

Leave a comment