From a035d37229e16af2c05362cb2ad4b1dc021e88cd Mon Sep 17 00:00:00 2001 From: j Date: Thu, 27 Jul 2023 19:27:00 +0200 Subject: [PATCH] add apps.py to all apps --- pandora/annotation/apps.py | 6 ++++++ pandora/app/apps.py | 7 +++++++ pandora/archive/apps.py | 7 +++++++ pandora/changelog/apps.py | 7 +++++++ pandora/clip/apps.py | 7 +++++++ pandora/document/apps.py | 7 +++++++ pandora/documentcollection/apps.py | 7 +++++++ pandora/edit/apps.py | 7 +++++++ pandora/entity/apps.py | 6 ++++++ pandora/event/apps.py | 6 ++++++ pandora/home/apps.py | 1 + pandora/item/apps.py | 6 ++++++ pandora/itemlist/apps.py | 7 +++++++ pandora/log/apps.py | 7 +++++++ pandora/mobile/apps.py | 1 + pandora/news/apps.py | 6 ++++++ pandora/person/apps.py | 7 +++++++ pandora/place/apps.py | 7 +++++++ pandora/system/apps.py | 1 + pandora/taskqueue/apps.py | 7 +++++++ pandora/text/apps.py | 7 +++++++ pandora/title/apps.py | 7 +++++++ pandora/translation/apps.py | 1 + pandora/tv/apps.py | 7 +++++++ pandora/urlalias/apps.py | 7 +++++++ pandora/user/apps.py | 7 +++++++ pandora/websocket/apps.py | 7 +++++++ 27 files changed, 160 insertions(+) create mode 100644 pandora/annotation/apps.py create mode 100644 pandora/app/apps.py create mode 100644 pandora/archive/apps.py create mode 100644 pandora/changelog/apps.py create mode 100644 pandora/clip/apps.py create mode 100644 pandora/document/apps.py create mode 100644 pandora/documentcollection/apps.py create mode 100644 pandora/edit/apps.py create mode 100644 pandora/entity/apps.py create mode 100644 pandora/event/apps.py create mode 100644 pandora/item/apps.py create mode 100644 pandora/itemlist/apps.py create mode 100644 pandora/log/apps.py create mode 100644 pandora/news/apps.py create mode 100644 pandora/person/apps.py create mode 100644 pandora/place/apps.py create mode 100644 pandora/taskqueue/apps.py create mode 100644 pandora/text/apps.py create mode 100644 pandora/title/apps.py create mode 100644 pandora/tv/apps.py create mode 100644 pandora/urlalias/apps.py create mode 100644 pandora/user/apps.py create mode 100644 pandora/websocket/apps.py diff --git a/pandora/annotation/apps.py b/pandora/annotation/apps.py new file mode 100644 index 000000000..8b0d41a8d --- /dev/null +++ b/pandora/annotation/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AnnotationConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'annotation' diff --git a/pandora/app/apps.py b/pandora/app/apps.py new file mode 100644 index 000000000..792933989 --- /dev/null +++ b/pandora/app/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class AppConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'app' + diff --git a/pandora/archive/apps.py b/pandora/archive/apps.py new file mode 100644 index 000000000..1679d490f --- /dev/null +++ b/pandora/archive/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class ArchiveConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'archive' + diff --git a/pandora/changelog/apps.py b/pandora/changelog/apps.py new file mode 100644 index 000000000..554ba51d4 --- /dev/null +++ b/pandora/changelog/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class ChangelogConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'changelog' + diff --git a/pandora/clip/apps.py b/pandora/clip/apps.py new file mode 100644 index 000000000..c957657fb --- /dev/null +++ b/pandora/clip/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class ClipConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'clip' + diff --git a/pandora/document/apps.py b/pandora/document/apps.py new file mode 100644 index 000000000..88a5f0b47 --- /dev/null +++ b/pandora/document/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class DocumentConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'document' + diff --git a/pandora/documentcollection/apps.py b/pandora/documentcollection/apps.py new file mode 100644 index 000000000..10e2984fa --- /dev/null +++ b/pandora/documentcollection/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class DocumentcollectionConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'documentcollection' + diff --git a/pandora/edit/apps.py b/pandora/edit/apps.py new file mode 100644 index 000000000..56f70942e --- /dev/null +++ b/pandora/edit/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class EditConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'edit' + diff --git a/pandora/entity/apps.py b/pandora/entity/apps.py new file mode 100644 index 000000000..621c71353 --- /dev/null +++ b/pandora/entity/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class EntityConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'entity' diff --git a/pandora/event/apps.py b/pandora/event/apps.py new file mode 100644 index 000000000..ff9d6ab73 --- /dev/null +++ b/pandora/event/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class EventConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'event' diff --git a/pandora/home/apps.py b/pandora/home/apps.py index 90dc7137f..8bb98271d 100644 --- a/pandora/home/apps.py +++ b/pandora/home/apps.py @@ -2,4 +2,5 @@ from django.apps import AppConfig class HomeConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" name = 'home' diff --git a/pandora/item/apps.py b/pandora/item/apps.py new file mode 100644 index 000000000..5c6b394d2 --- /dev/null +++ b/pandora/item/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ItemConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'item' diff --git a/pandora/itemlist/apps.py b/pandora/itemlist/apps.py new file mode 100644 index 000000000..541419f0d --- /dev/null +++ b/pandora/itemlist/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class ItemListConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'itemlist' + diff --git a/pandora/log/apps.py b/pandora/log/apps.py new file mode 100644 index 000000000..b7cd1d6a3 --- /dev/null +++ b/pandora/log/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class LogConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'log' + diff --git a/pandora/mobile/apps.py b/pandora/mobile/apps.py index 13970a589..708babdbe 100644 --- a/pandora/mobile/apps.py +++ b/pandora/mobile/apps.py @@ -2,4 +2,5 @@ from django.apps import AppConfig class MobileConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" name = 'mobile' diff --git a/pandora/news/apps.py b/pandora/news/apps.py new file mode 100644 index 000000000..8ebaec283 --- /dev/null +++ b/pandora/news/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class NewsConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'news' diff --git a/pandora/person/apps.py b/pandora/person/apps.py new file mode 100644 index 000000000..100989a3b --- /dev/null +++ b/pandora/person/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class PersonConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'person' + diff --git a/pandora/place/apps.py b/pandora/place/apps.py new file mode 100644 index 000000000..6dcfb91a3 --- /dev/null +++ b/pandora/place/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class PlaceConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'place' + diff --git a/pandora/system/apps.py b/pandora/system/apps.py index 5dc4d64bc..b3f493ea5 100644 --- a/pandora/system/apps.py +++ b/pandora/system/apps.py @@ -2,4 +2,5 @@ from django.apps import AppConfig class SystemConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" name = 'system' diff --git a/pandora/taskqueue/apps.py b/pandora/taskqueue/apps.py new file mode 100644 index 000000000..b699dccd6 --- /dev/null +++ b/pandora/taskqueue/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class TaskQueueConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'taskqueue' + diff --git a/pandora/text/apps.py b/pandora/text/apps.py new file mode 100644 index 000000000..7f181df12 --- /dev/null +++ b/pandora/text/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class TextConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'text' + diff --git a/pandora/title/apps.py b/pandora/title/apps.py new file mode 100644 index 000000000..d9e33f020 --- /dev/null +++ b/pandora/title/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class TitleConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'title' + diff --git a/pandora/translation/apps.py b/pandora/translation/apps.py index bb46e697a..0e3f39b0e 100644 --- a/pandora/translation/apps.py +++ b/pandora/translation/apps.py @@ -2,4 +2,5 @@ from django.apps import AppConfig class TranslationConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" name = 'translation' diff --git a/pandora/tv/apps.py b/pandora/tv/apps.py new file mode 100644 index 000000000..66d6f7832 --- /dev/null +++ b/pandora/tv/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class TvConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'tv' + diff --git a/pandora/urlalias/apps.py b/pandora/urlalias/apps.py new file mode 100644 index 000000000..4a518b48f --- /dev/null +++ b/pandora/urlalias/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class UrlaliasConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'urlalias' + diff --git a/pandora/user/apps.py b/pandora/user/apps.py new file mode 100644 index 000000000..b21c7aba4 --- /dev/null +++ b/pandora/user/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class UserConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'user' + diff --git a/pandora/websocket/apps.py b/pandora/websocket/apps.py new file mode 100644 index 000000000..63053af1c --- /dev/null +++ b/pandora/websocket/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class WebsocketConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = 'websocket' +