From b5d79c166df481110178cad03076053aa5764b08 Mon Sep 17 00:00:00 2001 From: Mehdi Osman Date: Thu, 15 Sep 2022 11:54:31 +0200 Subject: [PATCH] Update init_schema.sql --- scripts/helm/db/init_dbs/postgresql/init_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helm/db/init_dbs/postgresql/init_schema.sql b/scripts/helm/db/init_dbs/postgresql/init_schema.sql index c172c1d76..4d6ad7657 100644 --- a/scripts/helm/db/init_dbs/postgresql/init_schema.sql +++ b/scripts/helm/db/init_dbs/postgresql/init_schema.sql @@ -6,7 +6,7 @@ CREATE SCHEMA IF NOT EXISTS events; CREATE OR REPLACE FUNCTION openreplay_version() RETURNS text AS $$ -SELECT 'v1.8.0' +SELECT 'v1.8.1' $$ LANGUAGE sql IMMUTABLE; -- --- accounts.sql ---