openreplay/scripts/schema/db/init_dbs/postgresql/1.8.1/1.8.1.sql
2023-03-20 13:31:35 +01:00

55 lines
No EOL
1.9 KiB
PL/PgSQL

DO
$$
DECLARE
previous_version CONSTANT text := 'v1.8.0';
next_version CONSTANT text := 'v1.8.1';
BEGIN
IF (SELECT openreplay_version()) = previous_version THEN
raise notice 'valid previous DB version';
ELSEIF (SELECT openreplay_version()) = next_version THEN
raise notice 'new version detected, nothing to do';
ELSE
RAISE EXCEPTION 'upgrade to % failed, invalid previous version, expected %, got %', next_version,previous_version,(SELECT openreplay_version());
END IF;
END ;
$$
LANGUAGE plpgsql;
BEGIN;
CREATE OR REPLACE FUNCTION openreplay_version()
RETURNS text AS
$$
SELECT 'v1.8.1'
$$ LANGUAGE sql IMMUTABLE;
INSERT INTO metrics (name, category, default_config, is_predefined, is_template, is_public, predefined_key, metric_type,
view_type)
VALUES ('Fetch Calls with Errors', 'errors', '{
"col": 4,
"row": 2,
"position": 0
}', true, true, true, 'calls_errors', 'predefined', 'table')
ON CONFLICT (predefined_key) DO UPDATE
SET name=excluded.name,
category=excluded.category,
default_config=excluded.default_config,
is_predefined=excluded.is_predefined,
is_template=excluded.is_template,
is_public=excluded.is_public,
metric_type=excluded.metric_type,
view_type=excluded.view_type;
ALTER TABLE IF EXISTS oauth_authentication
DROP CONSTRAINT IF EXISTS oauth_authentication_user_id_provider_provider_user_id_key;
DROP INDEX IF EXISTS oauth_authentication_user_id_provider_provider_user_id_key;
ALTER TABLE IF EXISTS oauth_authentication
DROP CONSTRAINT IF EXISTS oauth_authentication_user_id_provider_key;
DROP INDEX IF EXISTS oauth_authentication_user_id_provider_key;
CREATE UNIQUE INDEX IF NOT EXISTS oauth_authentication_unique_user_id_provider_idx ON oauth_authentication (user_id, provider);
COMMIT;