feat(dm): migrated all the dm topics
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 4m26s

This commit is contained in:
2026-06-26 11:05:17 -05:00
parent 012a7e83b2
commit 47b149d1ea
48 changed files with 14156 additions and 44 deletions

View File

@@ -0,0 +1,18 @@
CREATE TABLE "prod_audit_log" (
"id" serial PRIMARY KEY NOT NULL,
"audit_id" integer NOT NULL,
"actor_name" text NOT NULL,
"audit_created_date" timestamp with time zone NOT NULL,
"message" text NOT NULL,
"content" jsonb NOT NULL,
"status" text DEFAULT 'pending' NOT NULL,
"processed" boolean DEFAULT false,
"retry_count" integer DEFAULT 0 NOT NULL,
"next_retry_at" timestamp with time zone,
"error_message" text,
"error_stack" text,
"processed_at" timestamp with time zone,
"created_at" timestamp with time zone DEFAULT now(),
"updated_at" timestamp with time zone DEFAULT now(),
CONSTRAINT "prod_audit_log_audit_id_unique" UNIQUE("audit_id")
);