Revision history [back]
Adi, have you done python manage.py flush
some time before the upgrade?
If so - then the migration history was erased from the database and the only way to recover is to "fake"-migrate the apps to the pre-upgrade stage. And then run the actual upgrade the command is:
python manage.py migrate <the_app> <schema_version> --fake
But you need to know to what schema version to go, for example:
python manage.py migrate django_authopenid 0005 --fake
Secondly - might have you accidentally removed app django_authopenid
from the list of installed apps?