Add AppConfig with default_auto_field set

This commit is contained in:
Cristopher Hernandez 2021-10-16 11:19:35 -07:00 committed by Guillaume Baffoin
parent f547a69e9f
commit 6fbe3b0229
1 changed files with 7 additions and 0 deletions

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'