CREATE TABLE "outfits" ( "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, "family_id" uuid NOT NULL, "child_id" uuid NOT NULL, "name" text NOT NULL, "garment_ids" uuid[] DEFAULT '{}' NOT NULL, "occasion_tags" text[] DEFAULT '{}', "created_at" timestamp with time zone DEFAULT now() NOT NULL ); --> statement-breakpoint ALTER TABLE "outfits" ADD CONSTRAINT "outfits_family_id_families_id_fk" FOREIGN KEY ("family_id") REFERENCES "public"."families"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint ALTER TABLE "outfits" ADD CONSTRAINT "outfits_child_id_children_id_fk" FOREIGN KEY ("child_id") REFERENCES "public"."children"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint CREATE INDEX "outfits_family_idx" ON "outfits" USING btree ("family_id");--> statement-breakpoint CREATE INDEX "outfits_child_idx" ON "outfits" USING btree ("child_id");