mirror of
https://github.com/Hopiu/django-watson.git
synced 2026-03-16 22:00:22 +00:00
Merge pull request #287 from CristopherH95/master
Add AppConfig with default_auto_field set
This commit is contained in:
commit
6e94b3879b
1 changed files with 7 additions and 0 deletions
7
watson/apps.py
Normal file
7
watson/apps.py
Normal 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'
|
||||
Loading…
Reference in a new issue