Refine workspaces and event publishing; harden uploads and email delivery

This commit is contained in:
2026-09-09 15:44:00 -04:00
parent f5702caaea
commit 574f29a68e
93 changed files with 2885 additions and 535 deletions
@@ -0,0 +1,8 @@
CREATE TABLE "email_webhook_events" (
"id" text PRIMARY KEY,
"provider_id" text NOT NULL,
"outcome" text NOT NULL,
"occurred_at" timestamp with time zone NOT NULL,
"received_at" timestamp with time zone DEFAULT now() NOT NULL
);
CREATE INDEX "email_webhook_events_provider_idx" ON "email_webhook_events" ("provider_id");