From aa702e29c21e9ec9ac44f3056d300cd506d4cfac Mon Sep 17 00:00:00 2001 From: amentis Date: Wed, 26 Jun 2024 17:51:15 +0300 Subject: [PATCH] add ant_AnnotationStatus table sql script --- .../00.02.002_Add_ant_AnnotationStatus.sql | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 dmp-db-scema/updates/00.02.002_Add_ant_AnnotationStatus.sql diff --git a/dmp-db-scema/updates/00.02.002_Add_ant_AnnotationStatus.sql b/dmp-db-scema/updates/00.02.002_Add_ant_AnnotationStatus.sql new file mode 100644 index 000000000..89f74d52d --- /dev/null +++ b/dmp-db-scema/updates/00.02.002_Add_ant_AnnotationStatus.sql @@ -0,0 +1,36 @@ +DO $$DECLARE + this_version CONSTANT varchar := '00.02.002'; +BEGIN + PERFORM * FROM "DBVersion" WHERE version = this_version; + IF FOUND THEN RETURN; END IF; + + CREATE TABLE public."ant_AnnotationStatus" + ( + id uuid NOT NULL, + annotation_id uuid NOT NULL, + status_id uuid NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + is_active smallint NOT NULL, + tenant uuid, + CONSTRAINT "ant_AnnotationStatus_pkey" PRIMARY KEY (id), + CONSTRAINT "ant_AnnotationStatus_annotation_fkey" FOREIGN KEY (annotation_id) + REFERENCES public."ant_Annotation" (id) MATCH SIMPLE + ON UPDATE NO ACTION + ON DELETE NO ACTION + NOT VALID, + CONSTRAINT "ant_AnnotationStatus_tenant_fkey" FOREIGN KEY (tenant) + REFERENCES public."ant_Tenant" (id) MATCH SIMPLE + ON UPDATE NO ACTION + ON DELETE NO ACTION + NOT VALID, + CONSTRAINT "ant_AnnotationStatus_status_fkey" FOREIGN KEY (status_id) + REFERENCES public."ant_Annotation" (id) MATCH SIMPLE + ON UPDATE NO ACTION + ON DELETE NO ACTION + NOT VALID + ); + + INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.02.002', '2024-06-26 12:00:00.000000+02', now(), 'Add ant_AnnotationStatus table.'); + +END$$; \ No newline at end of file