CREATE TABLE "notifications" ( "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, "user_id" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "message" text NOT NULL, "type" varchar(50) NOT NULL, "related_record_id" varchar(255), "related_record_type" varchar(100), "is_read" boolean DEFAULT false NOT NULL, "created_at" timestamp DEFAULT now() NOT NULL, "read_at" timestamp ); --> statement-breakpoint CREATE INDEX "idx_notifications_user_id" ON "notifications" USING btree ("user_id");--> statement-breakpoint CREATE INDEX "idx_notifications_created_at" ON "notifications" USING btree ("created_at" DESC NULLS LAST);--> statement-breakpoint CREATE INDEX "idx_notifications_is_read" ON "notifications" USING btree ("is_read");--> statement-breakpoint CREATE INDEX "idx_notifications_user_read" ON "notifications" USING btree ("user_id","is_read");