feat(diagnostics): harden ingestion and delivery

This commit is contained in:
2026-07-15 00:43:49 +02:00
parent ead4e09a60
commit b602a3acb6
42 changed files with 22428 additions and 141 deletions

View File

@@ -0,0 +1,4 @@
ALTER TABLE bugs ADD COLUMN occurred_at INTEGER;
-- Existing reports predate this field; their receipt time is the best available value.
UPDATE bugs SET occurred_at = received_at WHERE occurred_at IS NULL;