Week 1: South Migrations with Multiple Apps
Our Django application uses South to
manage database migrations for model changes. South seems to be universally
recommended and generally quite capable at its job. But when I went to do a
fresh install of our project, ./manage.py migrate
failed with
messages about missing tables or no-such-relation. Where did things go
wrong?
The answer is in how South handles multiple apps. (Continued…) …