[Django]-Django all-auth testing error – django.db.utils.OperationalError: no such table: socialaccount_openidstore

4👍

  1. Add ‘allauth.socialaccount.providers.openid’ to INSTALLED_APPS
  2. manage.py makemigrations
  3. manage.py migrate

That solved it for me.

👤Todd

2👍

I’ve succeeded with these lines to INSTALLED_APPS.

'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.openid',

Leave a comment