[Answered ]-First steps with PostgreSQL + Django + South

2๐Ÿ‘

โœ…

A possible answer:

Did you syncdb? Often when Iโ€™m having trouble with south, I just delete the database and run manage.py syncdb from scratch to make sure all my columns are in line. If you want south to ignore migration-enabled apps and just syncdb up to the current version, you can use manage.py syncdb --all

Leave a comment