mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
This patch removes a warning but also prevents creating migrations in projects where DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField".
6 lines
148 B
Python
6 lines
148 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DefenderAppConfig(AppConfig):
|
|
name = "defender"
|
|
default_auto_field = "django.db.models.AutoField"
|