Adding migration scripts for annotation service tables
This commit is contained in:
parent
0634324151
commit
c6c3ed4a5f
|
@ -0,0 +1,22 @@
|
|||
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",
|
||||
"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),
|
||||
);
|
||||
|
||||
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.055', '2024-02-20 12:00:00.000000+02', now(), 'Add table ant_Annotation.');
|
||||
|
||||
END$$;
|
|
@ -0,0 +1,24 @@
|
|||
DO $$DECLARE
|
||||
this_version CONSTANT varchar := '00.01.056';
|
||||
BEGIN
|
||||
PERFORM * FROM "DBVersion" WHERE version = this_version;
|
||||
IF FOUND THEN RETURN; END IF;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public."ant_EntityUser"
|
||||
(
|
||||
"id" uuid NOT NULL,
|
||||
"entity_id" uuid NOT NULL,
|
||||
"user_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,
|
||||
CONSTRAINT "ant_EntityUser_pkey" PRIMARY KEY (id),
|
||||
CONSTRAINT "ant_EntityUser_user_fkey" FOREIGN KEY ("user_id")
|
||||
REFERENCES public."ant_user" (id) MATCH SIMPLE
|
||||
ON UPDATE NO ACTION
|
||||
ON DELETE NO ACTION,
|
||||
);
|
||||
|
||||
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.056', '2024-02-20 12:00:00.000000+02', now(), 'Add table ant_EntityUser.');
|
||||
|
||||
END$$;
|
Loading…
Reference in New Issue