Add AppConfig with default_auto_field set

This commit is contained in:
Cristopher Hernandez 2021-10-16 11:19:35 -07:00
parent 9e874d0b25
commit 4d47aef2b9

7
watson/apps.py Normal file
View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class WatsonAppConfig(AppConfig):
"""App configuration for watson."""
name = 'watson'
default_auto_field = 'django.db.models.AutoField'