59 lines
3.6 KiB
MySQL
59 lines
3.6 KiB
MySQL
|
|
CREATE TABLE "brochure_versions" (
|
||
|
|
"id" text PRIMARY KEY NOT NULL,
|
||
|
|
"brochure_id" text NOT NULL,
|
||
|
|
"version_number" integer NOT NULL,
|
||
|
|
"storage_key" text NOT NULL,
|
||
|
|
"file_name" text NOT NULL,
|
||
|
|
"file_size_bytes" integer NOT NULL,
|
||
|
|
"content_sha256" text NOT NULL,
|
||
|
|
"uploaded_by" text NOT NULL,
|
||
|
|
"uploaded_at" timestamp with time zone DEFAULT now() NOT NULL,
|
||
|
|
"download_url_expires_at" timestamp with time zone
|
||
|
|
);
|
||
|
|
--> statement-breakpoint
|
||
|
|
CREATE TABLE "brochures" (
|
||
|
|
"id" text PRIMARY KEY NOT NULL,
|
||
|
|
"port_id" text NOT NULL,
|
||
|
|
"label" text NOT NULL,
|
||
|
|
"description" text,
|
||
|
|
"is_default" boolean DEFAULT false NOT NULL,
|
||
|
|
"archived_at" timestamp with time zone,
|
||
|
|
"created_by" text NOT NULL,
|
||
|
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL
|
||
|
|
);
|
||
|
|
--> statement-breakpoint
|
||
|
|
CREATE TABLE "document_sends" (
|
||
|
|
"id" text PRIMARY KEY NOT NULL,
|
||
|
|
"port_id" text NOT NULL,
|
||
|
|
"client_id" text,
|
||
|
|
"interest_id" text,
|
||
|
|
"recipient_email" text NOT NULL,
|
||
|
|
"document_kind" text NOT NULL,
|
||
|
|
"berth_id" text,
|
||
|
|
"berth_pdf_version_id" text,
|
||
|
|
"brochure_id" text,
|
||
|
|
"brochure_version_id" text,
|
||
|
|
"body_markdown" text,
|
||
|
|
"sent_by_user_id" text NOT NULL,
|
||
|
|
"from_address" text NOT NULL,
|
||
|
|
"sent_at" timestamp with time zone DEFAULT now() NOT NULL,
|
||
|
|
"message_id" text,
|
||
|
|
"fallback_to_link_reason" text,
|
||
|
|
"failed_at" timestamp with time zone,
|
||
|
|
"error_reason" text
|
||
|
|
);
|
||
|
|
--> statement-breakpoint
|
||
|
|
ALTER TABLE "brochure_versions" ADD CONSTRAINT "brochure_versions_brochure_id_brochures_id_fk" FOREIGN KEY ("brochure_id") REFERENCES "public"."brochures"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "brochures" ADD CONSTRAINT "brochures_port_id_ports_id_fk" FOREIGN KEY ("port_id") REFERENCES "public"."ports"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_port_id_ports_id_fk" FOREIGN KEY ("port_id") REFERENCES "public"."ports"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_client_id_clients_id_fk" FOREIGN KEY ("client_id") REFERENCES "public"."clients"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_interest_id_interests_id_fk" FOREIGN KEY ("interest_id") REFERENCES "public"."interests"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_berth_id_berths_id_fk" FOREIGN KEY ("berth_id") REFERENCES "public"."berths"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_brochure_id_brochures_id_fk" FOREIGN KEY ("brochure_id") REFERENCES "public"."brochures"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
ALTER TABLE "document_sends" ADD CONSTRAINT "document_sends_brochure_version_id_brochure_versions_id_fk" FOREIGN KEY ("brochure_version_id") REFERENCES "public"."brochure_versions"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_brochure_versions_brochure" ON "brochure_versions" USING btree ("brochure_id","uploaded_at");--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_brochures_port" ON "brochures" USING btree ("port_id");--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_ds_client" ON "document_sends" USING btree ("client_id","sent_at");--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_ds_interest" ON "document_sends" USING btree ("interest_id","sent_at");--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_ds_berth" ON "document_sends" USING btree ("berth_id","sent_at");--> statement-breakpoint
|
||
|
|
CREATE INDEX "idx_ds_port" ON "document_sends" USING btree ("port_id","sent_at");
|