openreplay/scripts/schema/db/init_dbs/postgresql/1.8.1/1.8.1.sql
2022-10-28 10:55:13 +02:00

38 lines
No EOL
1.3 KiB
PL/PgSQL

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;