Add: default field type

This commit is contained in:
Aroy-Art 2023-10-21 19:05:30 +02:00
parent 6beedc9c56
commit 57c3bb99ef
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -179,8 +179,13 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
#############################################################
#############################################################
# Default primary key field type
# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
#############################################################
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
#############################################################
# Allow embedding in iframes from the same origin
X_FRAME_OPTIONS = 'SAMEORIGIN'