27 lines
1015 B
SQL
27 lines
1015 B
SQL
DO $$DECLARE
|
|
this_version CONSTANT varchar := '00.01.055';
|
|
BEGIN
|
|
PERFORM * FROM "DBVersion" WHERE version = this_version;
|
|
IF FOUND THEN RETURN; END IF;
|
|
|
|
CREATE TABLE IF NOT EXISTS public."ant_Annotation"
|
|
(
|
|
"id" uuid NOT NULL,
|
|
"entity_id" uuid NOT NULL,
|
|
"entity_type" character varying(512) COLLATE pg_catalog."default" NOT NULL,
|
|
"anchor" character varying(512) COLLATE pg_catalog."default",
|
|
"payload" text COLLATE pg_catalog."default",
|
|
"tenant" uuid NULL,
|
|
"created_at" timestamp without time zone NOT NULL,
|
|
"updated_at" timestamp without time zone NOT NULL,
|
|
"is_active" smallint NOT NULL,
|
|
CONSTRAINT "ant_Annotation_pkey" PRIMARY KEY (id),
|
|
CONSTRAINT "ant_Annotation_tenant_fkey" FOREIGN KEY ("tenant")
|
|
REFERENCES public."ant_Tenant" (id) MATCH SIMPLE
|
|
ON UPDATE NO ACTION
|
|
ON DELETE NO ACTION
|
|
);
|
|
|
|
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.055', '2024-02-20 12:00:00.000000+02', now(), 'Add table ant_Annotation.');
|
|
|
|
END$$; |