12 lines
263 B
SQL
12 lines
263 B
SQL
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
|
|
);
|