summaryrefslogtreecommitdiff
path: root/tests/check_framework/apps.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_framework/apps.py')
-rw-r--r--tests/check_framework/apps.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/check_framework/apps.py b/tests/check_framework/apps.py
new file mode 100644
index 0000000000..c57994f722
--- /dev/null
+++ b/tests/check_framework/apps.py
@@ -0,0 +1,10 @@
+from django.apps import AppConfig
+
+
+class CheckDefaultPKConfig(AppConfig):
+ name = 'check_framework'
+
+
+class CheckPKConfig(AppConfig):
+ name = 'check_framework'
+ default_auto_field = 'django.db.models.BigAutoField'