11 lines
340 B
Python
11 lines
340 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DownloaderConfig(AppConfig):
|
|
# Ensure stable default primary key type
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
# Must be the full dotted path of this app
|
|
name = "thirdparty.downloader"
|
|
# Keep a short, stable label (used in migrations/admin)
|
|
label = "downloader"
|