From 388af4410dda8015360244b3e4fdae0a1bf54f85 Mon Sep 17 00:00:00 2001 From: amentis Date: Wed, 29 Nov 2023 16:41:12 +0200 Subject: [PATCH] add sql script --- .../updates/00.01.026_addLanguage.sql | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dmp-db-scema/updates/00.01.026_addLanguage.sql diff --git a/dmp-db-scema/updates/00.01.026_addLanguage.sql b/dmp-db-scema/updates/00.01.026_addLanguage.sql new file mode 100644 index 000000000..5a6bddff7 --- /dev/null +++ b/dmp-db-scema/updates/00.01.026_addLanguage.sql @@ -0,0 +1,24 @@ +DO $$DECLARE + this_version CONSTANT varchar := '00.01.026'; +BEGIN + PERFORM * FROM "DBVersion" WHERE version = this_version; + IF FOUND THEN RETURN; END IF; + + CREATE TABLE public."Language" + ( + id uuid NOT NULL, + code character varying(20) COLLATE pg_catalog."default" NOT NULL, + 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, + ordinal integer NOT NULL, + CONSTRAINT "Language_pkey" PRIMARY KEY (id) + ) + WITH ( + OIDS = FALSE + ); + + INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.026', '2023-11-29 12:00:00.000000+02', now(), 'Add table Language.'); + +END$$; \ No newline at end of file