Adding askbot to existing app, column auth_user.status does not exist
I have an existing django application to which I want to add askbot
. I included askbot code to the project folder. The current project structure is:
woot/
|-askbot/
|- ...
|- ...
|-urls.py
|-woot/
|-settings.py
|-urls.py
|-manage.py
According to the instructions, I merged the settings.py
and urls.py
files. Next, I ran python manage.py syncdb
. But I am getting the following error:
DatabaseError: column auth_user.status does not exist
LINE 1: ...uth_user"."is_active", "auth_user"."date_joined", "auth_user...
^
Is there something I've missed in the process? I use south
for migrations. Does this have any conflicts? I've been stuck in this step for the past couple of days. Any help would be awesome!
Comments