Note to self: Django/South basic usage
Not that I understand how this schema migration thing actually works. Anyway, initially, on an empty database:./manage.py syncdb --noinput ./manage.py schemamigration YOUR_APP --initial ./manage.py migrate YOUR_APP 0001 --fakeThen, after fiddling with your models:
./manage.py schemamigration YOUR_APP --auto ./manage.py migrate YOUR_APPThat should do it. But like I said, my understanding of the system is very limited and I'm sure there are cases when this simplistic pattern just won't cut it. My needs, however, at the moment are not the most complicated.
Categorised as: note