openreplay/scripts/helm/db/init_dbs/postgresql/1.5.2/1.5.2.sql
Taha Yassine Kraiem 37db48ceec feat(api): fixed get sessions list if no-metadata is available
feat(DB): v1.5.2 changes
2022-02-24 17:54:08 +01:00

8 lines
No EOL
129 B
PL/PgSQL

BEGIN;
CREATE OR REPLACE FUNCTION openreplay_version()
RETURNS text AS
$$
SELECT 'v1.5.2'
$$ LANGUAGE sql IMMUTABLE;
COMMIT;