From dd89fe546a112c6b41aa8be1c0ceda6534a64a6f Mon Sep 17 00:00:00 2001 From: Chad Wilson Date: Tue, 2 Jul 2024 22:39:33 +0800 Subject: [PATCH] fix: correct oracle and postgres schema versions Signed-off-by: Chad Wilson --- core/src/main/resources/data/initialize_oracle.sql | 2 +- core/src/main/resources/data/initialize_postgres.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/resources/data/initialize_oracle.sql b/core/src/main/resources/data/initialize_oracle.sql index 2247b1ce686..483a0071814 100644 --- a/core/src/main/resources/data/initialize_oracle.sql +++ b/core/src/main/resources/data/initialize_oracle.sql @@ -538,4 +538,4 @@ CREATE OR REPLACE VIEW v_update_ecosystems AS ON c.vendor=e.vendor AND c.product=e.product; -INSERT INTO properties(id,value) VALUES ('version','5.4'); +INSERT INTO properties(id,value) VALUES ('version','5.5'); diff --git a/core/src/main/resources/data/initialize_postgres.sql b/core/src/main/resources/data/initialize_postgres.sql index b4261554dc9..80c7372e6c6 100644 --- a/core/src/main/resources/data/initialize_postgres.sql +++ b/core/src/main/resources/data/initialize_postgres.sql @@ -324,4 +324,4 @@ GRANT EXECUTE ON FUNCTION public.insert_software (INT, CHAR(1), VARCHAR(255), -INSERT INTO properties(id,value) VALUES ('version','5.4'); +INSERT INTO properties(id,value) VALUES ('version','5.5');