fix script

This commit is contained in:
Efstratios Giannopoulos 2024-08-21 15:41:09 +03:00
parent 2a288b981c
commit b9ce41c115
1 changed files with 9 additions and 3 deletions

View File

@ -7,13 +7,19 @@ BEGIN
CREATE TABLE public."PlanStatus"
(
id uuid NOT NULL,
name character varying(250) NOT NULL,
description text,
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 NOT NULL,
PRIMARY KEY (id)
tenant uuid,
CONSTRAINT "PlanStatus_pkey" PRIMARY KEY (id),
CONSTRAINT "PlanStatus_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.072', '2024-08-21 12:00:00.000000+02', now(), 'Add plan status table.');