Document local times in database

This commit is contained in:
Ben Sturmfels 2025-12-15 14:33:18 +11:00
parent 60aa8f3074
commit 88752b7e99

View file

@ -125,6 +125,9 @@ TEMPLATES = [
] ]
# Internationalization # Internationalization
#
# Due to USE_TZ = False, times in the database are under the local America/New York
# timezone without any zone information.
TIME_ZONE = 'America/New_York' TIME_ZONE = 'America/New_York'
LANGUAGE_CODE = 'en-us' LANGUAGE_CODE = 'en-us'
USE_TZ = False USE_TZ = False