Skip to content

Commit e4d28fb

Browse files
authored
Add explicit Django AppConfig to set default_auto_field (#769)
1 parent bcae5cf commit e4d28fb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

push_notifications/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class PushNotificationsConfig(AppConfig):
5+
name = "push_notifications"
6+
default_auto_field = "django.db.models.AutoField"

0 commit comments

Comments
 (0)