Production readiness hardening and ops tooling

This commit is contained in:
2026-05-29 10:10:12 +07:00
parent e0b8f9af9a
commit 648e77cee9
68 changed files with 12222 additions and 848 deletions

View File

@ -0,0 +1,6 @@
ALTER TABLE export_jobs
ADD COLUMN IF NOT EXISTS result_storage_path TEXT,
ADD COLUMN IF NOT EXISTS result_size_bytes INTEGER,
ADD COLUMN IF NOT EXISTS expires_at TIMESTAMPTZ;
CREATE INDEX IF NOT EXISTS idx_export_jobs_expires_at ON export_jobs (expires_at);