script fix

This commit is contained in:
Diamantis Tziotzios 2023-11-29 15:31:51 +02:00
parent b7ff88be3a
commit d436fb4b2c
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
DO $$DECLARE
this_version CONSTANT varchar := '00.01.024';
this_version CONSTANT varchar := '00.01.025';
BEGIN
PERFORM * FROM "DBVersion" WHERE version = this_version;
IF FOUND THEN RETURN; END IF;
@ -27,6 +27,6 @@ BEGIN
OIDS = FALSE
);
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.024', '2023-11-20 12:00:00.000000+02', now(), 'Add table StorageFile.');
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.025', '2023-11-20 12:00:00.000000+02', now(), 'Add table StorageFile.');
END$$;