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
๐คJeremy Blanchard
Source:stackexchange.com