From 06866602e145334fabe80dc7edfaf9906b9ade1c Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Sun, 20 Feb 2022 17:52:07 +0100 Subject: [PATCH] feat(db): new release changes --- ee/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql | 8 ++++++++ scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 ee/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql create mode 100644 scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql diff --git a/ee/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql b/ee/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql new file mode 100644 index 000000000..48a326e9c --- /dev/null +++ b/ee/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql @@ -0,0 +1,8 @@ +BEGIN; +CREATE OR REPLACE FUNCTION openreplay_version() + RETURNS text AS +$$ +SELECT 'v1.5.1-ee' +$$ LANGUAGE sql IMMUTABLE; + +COMMIT; \ No newline at end of file diff --git a/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql b/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql new file mode 100644 index 000000000..babe0c705 --- /dev/null +++ b/scripts/helm/db/init_dbs/postgresql/1.5.1/1.5.1.sql @@ -0,0 +1,8 @@ +BEGIN; +CREATE OR REPLACE FUNCTION openreplay_version() + RETURNS text AS +$$ +SELECT 'v1.5.1' +$$ LANGUAGE sql IMMUTABLE; + +COMMIT; \ No newline at end of file