First time here? Check out the FAQ!

gsiddardha's profile - activity

2018-08-24 15:53:31 -0500 received badge Notable Question (source)
2015-06-18 05:48:58 -0500 received badge Popular Question (source)
2015-06-18 05:48:58 -0500 received badge Famous Question (source)
2014-09-26 11:21:53 -0500 received badge Student (source)
2014-09-26 05:14:17 -0500 asked a question 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!