Пытаюсь сделать
root@2fd625d222bb:/app# ./manage.py test
Creating test database for alias 'default'...
Got an error creating the test database: database "test_app" already exists
Type 'yes' if you would like to try deleting the test database 'test_app', or 'no' to cancel: yes
Destroying old test database for alias 'default'...
Получаю
__fake__.DoesNotExist: Site matching query does not exist.
>>> from django.contrib.sites.models import Site
>>> Site.objects.all()
<QuerySet [<Site: mysite.ru>]>
>>> Site.objects.first().pk
1
settings.py
SITE_ID = 1
Запись в бд есть, что не так?