argos/dmp-db-scema/updates/00.01.073_Add_DescriptionSt...

29 lines
983 B
MySQL
Raw Normal View History

2024-08-22 14:12:14 +02:00
DO $$DECLARE
this_version CONSTANT varchar := '00.01.073';
BEGIN
PERFORM * FROM "DBVersion" WHERE version = this_version;
IF FOUND THEN RETURN; END IF;
CREATE TABLE public."DescriptionStatus"
(
id uuid NOT NULL,
name character varying(250) COLLATE pg_catalog."default" NOT NULL,
description text COLLATE pg_catalog."default",
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
is_active smallint NOT NULL,
internal_status smallint,
2024-08-22 14:12:14 +02:00
definition xml,
tenant uuid,
2024-10-02 12:36:49 +02:00
action character varying(250) COLLATE pg_catalog."default",
2024-08-22 14:12:14 +02:00
CONSTRAINT "DescriptionStatus_pkey" PRIMARY KEY (id),
CONSTRAINT "DescriptionStatus_tenant_fkey" FOREIGN KEY (tenant)
REFERENCES public."Tenant" (id) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
NOT VALID
);
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.073', '2024-08-22 12:00:00.000000+02', now(), 'Add description status table.');
END$$;