1CREATE TABLE "continuity_containers" ( 2"id" UUID NOT NULL, 3PRIMARY KEY("id"), 4"identity_id" UUID, 5"name" VARCHAR (255) NOT NULL, 6"payload" jsonb, 7"expires_at" timestamp NOT NULL, 8"created_at" timestamp NOT NULL, 9"updated_at" timestamp NOT NULL, 10FOREIGN KEY ("identity_id") REFERENCES "identities" ("id") ON DELETE cascade 11);