Merge pull request #287 from CristopherH95/master

Add AppConfig with default_auto_field set
This commit is contained in:
Dave Hall 2021-10-17 12:30:28 +01:00 committed by GitHub
commit 6e94b3879b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'