fix sql script

This commit is contained in:
amentis 2023-11-29 17:07:40 +02:00
parent 388af4410d
commit 37349d8fca
1 changed files with 3 additions and 15 deletions

View File

@ -4,21 +4,9 @@ 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
);
ALTER TABLE public."Language"
ADD COLUMN ordinal integer NOT NULL;
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.026', '2023-11-29 12:00:00.000000+02', now(), 'Add table Language.');
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.026', '2023-11-29 12:00:00.000000+02', now(), 'ALter table Language.');
END$$;