Merge branch 'dmp-refactoring' of code-repo.d4science.org:MaDgiK-CITE/argos into dmp-refactoring

This commit is contained in:
Efstratios Giannopoulos 2024-06-26 17:52:16 +03:00
commit c05f9e8fbd
1 changed files with 36 additions and 0 deletions

View File

@ -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$$;