mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-28 12:10:24 +00:00
This ensures that changing DEFAULT_AUTO_FIELD in settings.py doesn't create migrations for constance.
6 lines
165 B
Python
6 lines
165 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ConstanceConfig(AppConfig):
|
|
name = 'constance.backends.database'
|
|
default_auto_field = 'django.db.models.AutoField'
|