Harden bulk retries, parallelize guest uploads, and move guest map below gallery

This commit is contained in:
2026-09-11 18:54:46 -04:00
parent 4bc48db656
commit 1e299a9914
25 changed files with 376 additions and 62 deletions
@@ -0,0 +1,8 @@
CREATE TABLE "operation_receipts" (
"id" text PRIMARY KEY NOT NULL,
"event_id" uuid NOT NULL REFERENCES "events"("id") ON DELETE CASCADE,
"user_id" text NOT NULL REFERENCES "user"("id") ON DELETE CASCADE,
"request_hash" text NOT NULL,
"result" jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL
);