mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-07 00:40:59 +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'
|