reafactored data mart and added better job monitor

This commit is contained in:
2026-02-19 13:20:20 -06:00
parent 76503f558b
commit 597d990a69
29 changed files with 2857 additions and 621 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE "job_audit_log" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"job_name" text,
"start_at" timestamp,
"finished_at" timestamp,
"duration_ms" integer,
"status" text,
"error_message" text,
"error_stack" text,
"meta_data" jsonb
);