Revision history [back]
Hi,
It seems that the migrations weren't applied you can try the following command
python manage.py syncdb --all
python manage.py migrate --fake
The first command will sync the database as if there are no migrations at all, the second command will apply migrations by faking them on the database record but not actually altering the database structure.