Merge branch 'dmp-refactoring' of https://code-repo.d4science.org/MaDgiK-CITE/argos into dmp-refactoring

This commit is contained in:
amentis 2023-11-29 15:38:36 +02:00
commit 8bcc11d9a1
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$$;