Persist event sign designs and harden invitation permissions

This commit is contained in:
2026-09-10 09:52:02 -04:00
parent 3a115f1161
commit 76ef573b3a
15 changed files with 289 additions and 32 deletions
@@ -0,0 +1,6 @@
CREATE TABLE "event_signs" (
"event_id" uuid PRIMARY KEY REFERENCES "events"("id") ON DELETE CASCADE,
"revision" uuid NOT NULL,
"object_key" text NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL
);