mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-02-05 15:55:19 -05:00
13 lines
334 B
Python
13 lines
334 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MediaConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.media"
|
|
|
|
def ready(self):
|
|
# Note: Django automatically creates add/change/delete/view permissions
|
|
# for all models, so no custom post_migrate handler is needed.
|
|
pass
|
|
|