CREATE TABLE "key" ( "id" varchar(30) NOT NULL, "workspace_id" varchar(30) NOT NULL, "time_created" timestamp with time zone DEFAULT now() NOT NULL, "time_deleted" timestamp with time zone, "user_id" text NOT NULL, "name" varchar(255) NOT NULL, "key" varchar(255) NOT NULL, "time_used" timestamp with time zone, CONSTRAINT "key_workspace_id_id_pk" PRIMARY KEY("workspace_id","id") ); --> statement-breakpoint ALTER TABLE "key" ADD CONSTRAINT "key_workspace_id_workspace_id_fk" FOREIGN KEY ("workspace_id") REFERENCES "public"."workspace"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint CREATE UNIQUE INDEX "global_key" ON "key" USING btree ("key");