Backfill / repair corrupted listings_listing.date_modified (~282k rows) #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Timezone bug:
date_modifiedstored as SAST (+2h) but tagged+00:00Secondary finding (Entry 2). The export writes a timestamp 2 hours ahead of
the DB-logged UTC time, yet with a
+00:00offset:date_modified12:00:00 UTC14:00:00+00:0013:00:00 UTC15:00:00+00:0015:00:00 UTC17:00:00+00:00SAST = UTC+2 → naive local datetime written with a UTC label. Likely
USE_TZ=False/ naivedatetime.now()on the app or export host.Task
USE_TZ/TIME_ZONEsettings and the host TZ on::28.misconfig, not only the export. Check other
auto_now/ timestamp cols.Priority: MEDIUM — corrupts all timestamps subtly; fix before backfill.