I was trying to update the db using South. Created the new classes in models.py, usual stuff.
Working with WinXP, Django 1.6.8, south 0.8.4, django-guardian 1.3.0.dev, virtual-env 1.10.1
Using the usual python manage.py schemamigration app_name --auto
found the new tables as expected.
Next used python manage.py migrate app_name
but this failed reporting
django.db.utils.ProgrammingError: relation "guardian_userobjectpermission" does not exist
LINE 1: DELETE FROM "guardian_userobjectpermission" WHERE "guardian_...
I read How to check version of python modules? but did not find the answer.
Tommy.