Production readiness hardening and ops tooling
This commit is contained in:
6
migrations/003_export_job_storage.sql
Normal file
6
migrations/003_export_job_storage.sql
Normal 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);
|
||||
Reference in New Issue
Block a user