From 7ea84d1bc74d3d1053bef2677ece13e7add1c905 Mon Sep 17 00:00:00 2001 From: Boris Sekachev <40690378+bsekachev@users.noreply.github.com> Date: Tue, 3 Sep 2019 21:43:52 +0300 Subject: [PATCH] Fixed: no such table: allauth_socialaccount (#687) --- cvat/settings/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cvat/settings/base.py b/cvat/settings/base.py index 2a5af79f..6e2053d1 100644 --- a/cvat/settings/base.py +++ b/cvat/settings/base.py @@ -108,6 +108,7 @@ INSTALLED_APPS = [ 'django.contrib.sites', 'allauth', 'allauth.account', + 'allauth.socialaccount', 'rest_auth.registration' ]