I've added a field to the main Django 'User' model, by inserting a User.add_to_class() to Askbot's models.init
the added code is the following:
#askbot-devel/askbot/models/__init__.py
User.add_to_class('show_active_status', models.BooleanField(default = False))
then I run South's schemamigration
$ ./manage.py schemamigration askbot --auto
Nothing seems to have changed.
As you can see it doesn't pick up the changes.
I've checked the database and nothing has changed at all.
Additionally, I've also checked that I'm working on the right init file because, besides tha fact that South is not picking up changes, when I run the server after saving the above changes it all breaks up, giving an error: 'current transaction is aborted, commands ignored until end of transaction block'
What am I doing wrong?