2023-11-02 16:11:34 +01:00
|
|
|
DO $$DECLARE
|
|
|
|
this_version CONSTANT varchar := '00.01.012';
|
|
|
|
BEGIN
|
|
|
|
PERFORM * FROM "DBVersion" WHERE version = this_version;
|
|
|
|
IF FOUND THEN RETURN; END IF;
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS public."DmpDescriptionTemplate"
|
|
|
|
(
|
|
|
|
"id" uuid NOT NULL,
|
|
|
|
"dmp" uuid NOT NULL,
|
|
|
|
"description_template" uuid NOT NULL,
|
|
|
|
"data" text COLLATE pg_catalog."default" NOT NULL,
|
2023-11-02 16:55:34 +01:00
|
|
|
"created_at" timestamp without time zone NOT NULL DEFAULT now(),
|
|
|
|
"updated_at" timestamp without time zone NOT NULL DEFAULT now(),
|
|
|
|
"is_active" smallint NOT NULL DEFAULT 1,
|
2023-11-02 16:11:34 +01:00
|
|
|
CONSTRAINT id PRIMARY KEY (id),
|
|
|
|
CONSTRAINT "DmpDescriptionTemplate_dmp_fkey" FOREIGN KEY (dmp)
|
|
|
|
REFERENCES public."Dmp" (id),
|
|
|
|
CONSTRAINT "DmpDescriptionTemplate_description_template_fkey" FOREIGN KEY (description_template)
|
|
|
|
REFERENCES public."DescriptionTemplate" (id)
|
|
|
|
)
|
|
|
|
|
|
|
|
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.012', '2023-11-02 12:00:00.000000+02', now(), 'Add Dmp Description Template table (former DMPDatasetProfile).');
|
|
|
|
|
|
|
|
END$$;
|