Files

7 lines
228 B
SQL

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
);