1258 lines
No EOL
64 KiB
PL/PgSQL
1258 lines
No EOL
64 KiB
PL/PgSQL
\set or_version 'v1.20.0'
|
|
SET client_min_messages TO NOTICE;
|
|
\set ON_ERROR_STOP true
|
|
SELECT EXISTS (SELECT 1
|
|
FROM information_schema.tables
|
|
WHERE table_schema = 'public'
|
|
AND table_name = 'tenants') AS db_exists;
|
|
\gset
|
|
\if :db_exists
|
|
\echo >DB already exists, stopping script
|
|
\echo >If you are trying to upgrade openreplay, please follow the instructions here: https://docs.openreplay.com/en/deployment/upgrade/
|
|
\q
|
|
\endif
|
|
|
|
BEGIN;
|
|
-- Schemas and functions definitions:
|
|
CREATE SCHEMA IF NOT EXISTS events_common;
|
|
CREATE SCHEMA IF NOT EXISTS events;
|
|
CREATE SCHEMA IF NOT EXISTS events_ios;
|
|
CREATE SCHEMA IF NOT EXISTS or_cache;
|
|
CREATE EXTENSION IF NOT EXISTS pg_trgm;
|
|
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
|
|
|
SELECT format($fn_def$
|
|
CREATE OR REPLACE FUNCTION openreplay_version()
|
|
RETURNS text AS
|
|
$$
|
|
SELECT '%1$s'
|
|
$$ LANGUAGE sql IMMUTABLE;
|
|
$fn_def$, :'or_version')
|
|
\gexec
|
|
|
|
CREATE OR REPLACE FUNCTION generate_api_key(length integer) RETURNS text AS
|
|
$$
|
|
declare
|
|
chars text[] := '{0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}';
|
|
result text := '';
|
|
i integer := 0;
|
|
begin
|
|
if length < 0 then
|
|
raise exception 'Given length cannot be less than 0';
|
|
end if;
|
|
for i in 1..length
|
|
loop
|
|
result := result || chars[1 + random() * (array_length(chars, 1) - 1)];
|
|
end loop;
|
|
return result;
|
|
end;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION notify_integration() RETURNS trigger AS
|
|
$$
|
|
BEGIN
|
|
IF NEW IS NULL THEN
|
|
PERFORM pg_notify('integration',
|
|
jsonb_build_object('project_id', OLD.project_id, 'provider', OLD.provider, 'options',
|
|
null)::text);
|
|
ELSIF (OLD IS NULL) OR (OLD.options <> NEW.options) THEN
|
|
PERFORM pg_notify('integration', row_to_json(NEW)::text);
|
|
END IF;
|
|
RETURN NULL;
|
|
END;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION notify_alert() RETURNS trigger AS
|
|
$$
|
|
DECLARE
|
|
clone jsonb;
|
|
BEGIN
|
|
clone = to_jsonb(NEW);
|
|
clone = jsonb_set(clone, '{created_at}', to_jsonb(CAST(EXTRACT(epoch FROM NEW.created_at) * 1000 AS BIGINT)));
|
|
IF NEW.deleted_at NOTNULL THEN
|
|
clone = jsonb_set(clone, '{deleted_at}', to_jsonb(CAST(EXTRACT(epoch FROM NEW.deleted_at) * 1000 AS BIGINT)));
|
|
END IF;
|
|
PERFORM pg_notify('alert', clone::text);
|
|
RETURN NEW;
|
|
END ;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION notify_project() RETURNS trigger AS
|
|
$$
|
|
BEGIN
|
|
PERFORM pg_notify('project', row_to_json(NEW)::text);
|
|
RETURN NEW;
|
|
END;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
-- All tables and types:
|
|
|
|
CREATE TABLE public.tenants
|
|
(
|
|
tenant_id integer NOT NULL DEFAULT 1,
|
|
tenant_key text NOT NULL DEFAULT generate_api_key(20),
|
|
name text NOT NULL,
|
|
api_key text NOT NULL DEFAULT generate_api_key(20),
|
|
created_at timestamp without time zone NOT NULL DEFAULT (now() at time zone 'utc'),
|
|
license text NULL,
|
|
opt_out bool NOT NULL DEFAULT FALSE,
|
|
t_projects integer NOT NULL DEFAULT 1,
|
|
t_sessions bigint NOT NULL DEFAULT 0,
|
|
t_users integer NOT NULL DEFAULT 1,
|
|
t_integrations integer NOT NULL DEFAULT 0,
|
|
last_telemetry bigint NOT NULL DEFAULT CAST(EXTRACT(epoch FROM date_trunc('day', now())) * 1000 AS BIGINT),
|
|
scope_state smallint NOT NULL DEFAULT 0,
|
|
CONSTRAINT onerow_uni CHECK (tenant_id = 1)
|
|
);
|
|
|
|
CREATE TYPE user_role AS ENUM ('owner', 'admin', 'member');
|
|
|
|
CREATE TABLE public.users
|
|
(
|
|
user_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
email text NOT NULL UNIQUE,
|
|
role user_role NOT NULL DEFAULT 'member',
|
|
name text NOT NULL,
|
|
created_at timestamp without time zone NOT NULL DEFAULT (now() at time zone 'utc'),
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL,
|
|
api_key text UNIQUE DEFAULT generate_api_key(20) NOT NULL,
|
|
jwt_iat timestamp without time zone NULL DEFAULT NULL,
|
|
jwt_refresh_jti integer NULL DEFAULT NULL,
|
|
jwt_refresh_iat timestamp without time zone NULL DEFAULT NULL,
|
|
spot_jwt_iat timestamp without time zone NULL DEFAULT NULL,
|
|
spot_jwt_refresh_jti integer NULL DEFAULT NULL,
|
|
spot_jwt_refresh_iat timestamp without time zone NULL DEFAULT NULL,
|
|
data jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
weekly_report boolean NOT NULL DEFAULT TRUE,
|
|
settings jsonb DEFAULT '{
|
|
"modules": [
|
|
"usability-tests",
|
|
"feature-flags"
|
|
]
|
|
}'::jsonb
|
|
);
|
|
|
|
CREATE TABLE public.basic_authentication
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
password text DEFAULT NULL,
|
|
invitation_token text NULL DEFAULT NULL,
|
|
invited_at timestamp without time zone NULL DEFAULT NULL,
|
|
change_pwd_token text NULL DEFAULT NULL,
|
|
change_pwd_expire_at timestamp without time zone NULL DEFAULT NULL,
|
|
changed_at timestamp,
|
|
UNIQUE (user_id)
|
|
);
|
|
|
|
CREATE TYPE oauth_provider AS ENUM ('jira', 'github');
|
|
CREATE TABLE public.oauth_authentication
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
provider oauth_provider NOT NULL,
|
|
provider_user_id text NOT NULL,
|
|
token text NOT NULL
|
|
);
|
|
CREATE UNIQUE INDEX oauth_authentication_unique_user_id_provider_idx ON public.oauth_authentication (user_id, provider);
|
|
|
|
CREATE TYPE platform AS ENUM ('web','ios','android');
|
|
|
|
CREATE TABLE public.projects
|
|
(
|
|
project_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_key varchar(20) NOT NULL UNIQUE DEFAULT generate_api_key(20),
|
|
name text NOT NULL,
|
|
platform platform NOT NULL DEFAULT 'web',
|
|
active boolean NOT NULL,
|
|
sample_rate smallint NOT NULL DEFAULT 100 CHECK (sample_rate >= 0 AND sample_rate <= 100),
|
|
created_at timestamp without time zone NOT NULL DEFAULT (now() at time zone 'utc'),
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL,
|
|
max_session_duration integer NOT NULL DEFAULT 7200000,
|
|
metadata_1 text DEFAULT NULL,
|
|
metadata_2 text DEFAULT NULL,
|
|
metadata_3 text DEFAULT NULL,
|
|
metadata_4 text DEFAULT NULL,
|
|
metadata_5 text DEFAULT NULL,
|
|
metadata_6 text DEFAULT NULL,
|
|
metadata_7 text DEFAULT NULL,
|
|
metadata_8 text DEFAULT NULL,
|
|
metadata_9 text DEFAULT NULL,
|
|
metadata_10 text DEFAULT NULL,
|
|
save_request_payloads boolean NOT NULL DEFAULT FALSE,
|
|
gdpr jsonb NOT NULL DEFAULT '{
|
|
"maskEmails": true,
|
|
"sampleRate": 33,
|
|
"maskNumbers": false,
|
|
"defaultInputMode": "obscured"
|
|
}'::jsonb,
|
|
first_recorded_session_at timestamp without time zone NULL DEFAULT NULL,
|
|
sessions_last_check_at timestamp without time zone NULL DEFAULT NULL,
|
|
beacon_size integer NOT NULL DEFAULT 0,
|
|
conditional_capture boolean NOT NULL DEFAULT FALSE
|
|
);
|
|
|
|
CREATE INDEX projects_project_key_idx ON public.projects (project_key);
|
|
CREATE INDEX projects_project_id_deleted_at_n_idx ON public.projects (project_id) WHERE deleted_at IS NULL;
|
|
|
|
CREATE TRIGGER on_insert_or_update
|
|
AFTER INSERT OR UPDATE
|
|
ON public.projects
|
|
FOR EACH ROW
|
|
EXECUTE PROCEDURE notify_project();
|
|
|
|
|
|
CREATE TYPE webhook_type AS ENUM ('webhook', 'slack', 'email', 'msteams');
|
|
|
|
CREATE TABLE public.webhooks
|
|
(
|
|
webhook_id integer generated by DEFAULT as identity
|
|
constraint webhooks_pkey
|
|
primary key,
|
|
endpoint text NOT NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
deleted_at timestamp,
|
|
auth_header text,
|
|
type webhook_type NOT NULL DEFAULT 'webhook',
|
|
index integer DEFAULT 0 NOT NULL,
|
|
name varchar(100)
|
|
);
|
|
|
|
|
|
CREATE TABLE public.notifications
|
|
(
|
|
notification_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
user_id integer REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
title text NOT NULL,
|
|
description text NOT NULL,
|
|
button_text varchar(80) NULL,
|
|
button_url text NULL,
|
|
image_url text NULL,
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
options jsonb NOT NULL DEFAULT '{}'::jsonb
|
|
);
|
|
|
|
CREATE INDEX notifications_user_id_index ON public.notifications (user_id);
|
|
CREATE INDEX notifications_created_at_index ON public.notifications (created_at DESC);
|
|
CREATE INDEX notifications_created_at_epoch_idx ON public.notifications (CAST(EXTRACT(EPOCH FROM created_at) * 1000 AS BIGINT) DESC);
|
|
|
|
CREATE TABLE public.user_viewed_notifications
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) on delete cascade,
|
|
notification_id integer NOT NULL REFERENCES public.notifications (notification_id) on delete cascade,
|
|
constraint user_viewed_notifications_pkey primary key (user_id, notification_id)
|
|
);
|
|
|
|
|
|
CREATE TYPE announcement_type AS ENUM ('notification', 'alert');
|
|
|
|
CREATE TABLE public.announcements
|
|
(
|
|
announcement_id serial NOT NULL
|
|
constraint announcements_pk
|
|
primary key,
|
|
title text NOT NULL,
|
|
description text NOT NULL,
|
|
button_text varchar(30),
|
|
button_url text,
|
|
image_url text,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
type announcement_type DEFAULT 'notification'::announcement_type NOT NULL
|
|
);
|
|
|
|
|
|
CREATE TYPE integration_provider AS ENUM ('bugsnag', 'cloudwatch', 'datadog', 'newrelic', 'rollbar', 'sentry', 'stackdriver', 'sumologic', 'elasticsearch'); --, 'jira', 'github');
|
|
CREATE TABLE public.integrations
|
|
(
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
provider integration_provider NOT NULL,
|
|
options jsonb NOT NULL,
|
|
request_data jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
PRIMARY KEY (project_id, provider)
|
|
);
|
|
|
|
CREATE TRIGGER on_insert_or_update_or_delete
|
|
AFTER INSERT OR UPDATE OR DELETE
|
|
ON public.integrations
|
|
FOR EACH ROW
|
|
EXECUTE PROCEDURE notify_integration();
|
|
|
|
|
|
CREATE TABLE public.jira_cloud
|
|
(
|
|
user_id integer NOT NULL
|
|
constraint jira_cloud_pk
|
|
primary key
|
|
constraint jira_cloud_users_fkey
|
|
REFERENCES public.users
|
|
on delete cascade,
|
|
username text NOT NULL,
|
|
token text NOT NULL,
|
|
url text
|
|
);
|
|
|
|
|
|
CREATE TYPE issue_type AS ENUM (
|
|
'click_rage',
|
|
'tap_rage',
|
|
'dead_click',
|
|
'excessive_scrolling',
|
|
'bad_request',
|
|
'missing_resource',
|
|
'memory',
|
|
'cpu',
|
|
'slow_resource',
|
|
'slow_page_load',
|
|
'crash',
|
|
'ml_cpu',
|
|
'ml_memory',
|
|
'ml_dead_click',
|
|
'ml_click_rage',
|
|
'ml_mouse_thrashing',
|
|
'ml_excessive_scrolling',
|
|
'ml_slow_resources',
|
|
'custom',
|
|
'js_exception',
|
|
'mouse_thrashing',
|
|
'app_crash'
|
|
);
|
|
|
|
CREATE TABLE public.issues
|
|
(
|
|
issue_id text NOT NULL PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
type issue_type NOT NULL,
|
|
context_string text NOT NULL,
|
|
context jsonb DEFAULT NULL
|
|
);
|
|
CREATE INDEX issues_issue_id_type_idx ON public.issues (issue_id, type);
|
|
CREATE INDEX issues_project_id_issue_id_idx ON public.issues (project_id, issue_id);
|
|
CREATE INDEX issues_project_id_idx ON public.issues (project_id);
|
|
|
|
|
|
CREATE TYPE error_source AS ENUM ('js_exception', 'bugsnag', 'cloudwatch', 'datadog', 'newrelic', 'rollbar', 'sentry', 'stackdriver', 'sumologic', 'elasticsearch');
|
|
CREATE TYPE error_status AS ENUM ('unresolved', 'resolved', 'ignored');
|
|
CREATE TABLE public.errors
|
|
(
|
|
error_id text NOT NULL PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
source error_source NOT NULL,
|
|
name text DEFAULT NULL,
|
|
message text NOT NULL,
|
|
payload jsonb NOT NULL,
|
|
status error_status NOT NULL DEFAULT 'unresolved',
|
|
parent_error_id text DEFAULT NULL REFERENCES public.errors (error_id) ON DELETE SET NULL,
|
|
stacktrace jsonb, --to save the stacktrace and not query S3 another time
|
|
stacktrace_parsed_at timestamp
|
|
);
|
|
CREATE INDEX errors_project_id_source_idx ON public.errors (project_id, source);
|
|
CREATE INDEX errors_message_gin_idx ON public.errors USING GIN (message gin_trgm_ops);
|
|
CREATE INDEX errors_name_gin_idx ON public.errors USING GIN (name gin_trgm_ops);
|
|
CREATE INDEX errors_project_id_idx ON public.errors (project_id);
|
|
CREATE INDEX errors_project_id_status_idx ON public.errors (project_id, status);
|
|
CREATE INDEX errors_project_id_error_id_js_exception_idx ON public.errors (project_id, error_id) WHERE source = 'js_exception';
|
|
CREATE INDEX errors_project_id_error_id_idx ON public.errors (project_id, error_id);
|
|
CREATE INDEX errors_project_id_error_id_integration_idx ON public.errors (project_id, error_id) WHERE source != 'js_exception';
|
|
CREATE INDEX errors_error_id_idx ON public.errors (error_id);
|
|
CREATE INDEX errors_parent_error_id_idx ON public.errors (parent_error_id);
|
|
|
|
CREATE TABLE public.user_favorite_errors
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
error_id text NOT NULL REFERENCES public.errors (error_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (user_id, error_id)
|
|
);
|
|
|
|
CREATE TABLE public.user_viewed_errors
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
error_id text NOT NULL REFERENCES public.errors (error_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (user_id, error_id)
|
|
);
|
|
CREATE INDEX user_viewed_errors_user_id_idx ON public.user_viewed_errors (user_id);
|
|
CREATE INDEX user_viewed_errors_error_id_idx ON public.user_viewed_errors (error_id);
|
|
|
|
CREATE TYPE device_type AS ENUM ('desktop', 'tablet', 'mobile', 'other');
|
|
CREATE TYPE country AS ENUM ('UN', 'RW', 'SO', 'YE', 'IQ', 'SA', 'IR', 'CY', 'TZ', 'SY', 'AM', 'KE', 'CD', 'DJ', 'UG', 'CF', 'SC', 'JO', 'LB', 'KW', 'OM', 'QA', 'BH', 'AE', 'IL', 'TR', 'ET', 'ER', 'EG', 'SD', 'GR', 'BI', 'EE', 'LV', 'AZ', 'LT', 'SJ', 'GE', 'MD', 'BY', 'FI', 'AX', 'UA', 'MK', 'HU', 'BG', 'AL', 'PL', 'RO', 'XK', 'ZW', 'ZM', 'KM', 'MW', 'LS', 'BW', 'MU', 'SZ', 'RE', 'ZA', 'YT', 'MZ', 'MG', 'AF', 'PK', 'BD', 'TM', 'TJ', 'LK', 'BT', 'IN', 'MV', 'IO', 'NP', 'MM', 'UZ', 'KZ', 'KG', 'TF', 'HM', 'CC', 'PW', 'VN', 'TH', 'ID', 'LA', 'TW', 'PH', 'MY', 'CN', 'HK', 'BN', 'MO', 'KH', 'KR', 'JP', 'KP', 'SG', 'CK', 'TL', 'RU', 'MN', 'AU', 'CX', 'MH', 'FM', 'PG', 'SB', 'TV', 'NR', 'VU', 'NC', 'NF', 'NZ', 'FJ', 'LY', 'CM', 'SN', 'CG', 'PT', 'LR', 'CI', 'GH', 'GQ', 'NG', 'BF', 'TG', 'GW', 'MR', 'BJ', 'GA', 'SL', 'ST', 'GI', 'GM', 'GN', 'TD', 'NE', 'ML', 'EH', 'TN', 'ES', 'MA', 'MT', 'DZ', 'FO', 'DK', 'IS', 'GB', 'CH', 'SE', 'NL', 'AT', 'BE', 'DE', 'LU', 'IE', 'MC', 'FR', 'AD', 'LI', 'JE', 'IM', 'GG', 'SK', 'CZ', 'NO', 'VA', 'SM', 'IT', 'SI', 'ME', 'HR', 'BA', 'AO', 'NA', 'SH', 'BV', 'BB', 'CV', 'GY', 'GF', 'SR', 'PM', 'GL', 'PY', 'UY', 'BR', 'FK', 'GS', 'JM', 'DO', 'CU', 'MQ', 'BS', 'BM', 'AI', 'TT', 'KN', 'DM', 'AG', 'LC', 'TC', 'AW', 'VG', 'VC', 'MS', 'MF', 'BL', 'GP', 'GD', 'KY', 'BZ', 'SV', 'GT', 'HN', 'NI', 'CR', 'VE', 'EC', 'CO', 'PA', 'HT', 'AR', 'CL', 'BO', 'PE', 'MX', 'PF', 'PN', 'KI', 'TK', 'TO', 'WF', 'WS', 'NU', 'MP', 'GU', 'PR', 'VI', 'UM', 'AS', 'CA', 'US', 'PS', 'RS', 'AQ', 'SX', 'CW', 'BQ', 'SS','AC','AN','BU','CP','CS','CT','DD','DG','DY','EA','FQ','FX','HV','IC','JT','MI','NH','NQ','NT','PC','PU','PZ','RH','SU','TA','TP','VD','WK','YD','YU','ZR');
|
|
|
|
CREATE TABLE public.sessions
|
|
(
|
|
session_id bigint PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
tracker_version text NOT NULL,
|
|
start_ts bigint NOT NULL,
|
|
timezone text NULL,
|
|
duration integer NULL,
|
|
rev_id text DEFAULT NULL,
|
|
platform platform NOT NULL DEFAULT 'web',
|
|
is_snippet boolean NOT NULL DEFAULT FALSE,
|
|
user_id text DEFAULT NULL,
|
|
user_anonymous_id text DEFAULT NULL,
|
|
user_uuid uuid NOT NULL,
|
|
user_os text NOT NULL,
|
|
user_os_version text DEFAULT NULL,
|
|
user_browser text DEFAULT NULL,
|
|
user_browser_version text DEFAULT NULL,
|
|
user_device text NOT NULL,
|
|
user_device_type device_type NOT NULL,
|
|
user_device_memory_size integer DEFAULT NULL,
|
|
user_device_heap_size bigint DEFAULT NULL,
|
|
user_country country NOT NULL,
|
|
user_city text NULL,
|
|
user_state text NULL,
|
|
pages_count integer NOT NULL DEFAULT 0,
|
|
events_count integer NOT NULL DEFAULT 0,
|
|
errors_count integer NOT NULL DEFAULT 0,
|
|
watchdogs_score bigint NOT NULL DEFAULT 0,
|
|
issue_score bigint NOT NULL DEFAULT 0,
|
|
issue_types issue_type[] NOT NULL DEFAULT '{}'::issue_type[],
|
|
utm_source text NULL DEFAULT NULL,
|
|
utm_medium text NULL DEFAULT NULL,
|
|
utm_campaign text NULL DEFAULT NULL,
|
|
referrer text NULL DEFAULT NULL,
|
|
base_referrer text NULL DEFAULT NULL,
|
|
has_ut_test boolean DEFAULT FALSE,
|
|
screen_width integer DEFAULT NULL,
|
|
screen_height integer DEFAULT NULL,
|
|
metadata_1 text DEFAULT NULL,
|
|
metadata_2 text DEFAULT NULL,
|
|
metadata_3 text DEFAULT NULL,
|
|
metadata_4 text DEFAULT NULL,
|
|
metadata_5 text DEFAULT NULL,
|
|
metadata_6 text DEFAULT NULL,
|
|
metadata_7 text DEFAULT NULL,
|
|
metadata_8 text DEFAULT NULL,
|
|
metadata_9 text DEFAULT NULL,
|
|
metadata_10 text DEFAULT NULL
|
|
);
|
|
CREATE INDEX sessions_project_id_start_ts_idx ON public.sessions (project_id, start_ts);
|
|
CREATE INDEX sessions_project_id_user_id_idx ON public.sessions (project_id, user_id);
|
|
CREATE INDEX sessions_project_id_user_anonymous_id_idx ON public.sessions (project_id, user_anonymous_id);
|
|
CREATE INDEX sessions_project_id_user_device_idx ON public.sessions (project_id, user_device);
|
|
CREATE INDEX sessions_project_id_user_country_idx ON public.sessions (project_id, user_country);
|
|
CREATE INDEX sessions_project_id_user_city_idx ON public.sessions (project_id, user_city);
|
|
CREATE INDEX sessions_project_id_user_state_idx ON public.sessions (project_id, user_state);
|
|
CREATE INDEX sessions_project_id_user_browser_idx ON public.sessions (project_id, user_browser);
|
|
CREATE INDEX sessions_project_id_metadata_1_idx ON public.sessions (project_id, metadata_1);
|
|
CREATE INDEX sessions_project_id_metadata_2_idx ON public.sessions (project_id, metadata_2);
|
|
CREATE INDEX sessions_project_id_metadata_3_idx ON public.sessions (project_id, metadata_3);
|
|
CREATE INDEX sessions_project_id_metadata_4_idx ON public.sessions (project_id, metadata_4);
|
|
CREATE INDEX sessions_project_id_metadata_5_idx ON public.sessions (project_id, metadata_5);
|
|
CREATE INDEX sessions_project_id_metadata_6_idx ON public.sessions (project_id, metadata_6);
|
|
CREATE INDEX sessions_project_id_metadata_7_idx ON public.sessions (project_id, metadata_7);
|
|
CREATE INDEX sessions_project_id_metadata_8_idx ON public.sessions (project_id, metadata_8);
|
|
CREATE INDEX sessions_project_id_metadata_9_idx ON public.sessions (project_id, metadata_9);
|
|
CREATE INDEX sessions_project_id_metadata_10_idx ON public.sessions (project_id, metadata_10);
|
|
CREATE INDEX sessions_project_id_watchdogs_score_idx ON public.sessions (project_id, watchdogs_score DESC);
|
|
CREATE INDEX sessions_platform_idx ON public.sessions (platform);
|
|
|
|
CREATE INDEX sessions_metadata1_gin_idx ON public.sessions USING GIN (metadata_1 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata2_gin_idx ON public.sessions USING GIN (metadata_2 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata3_gin_idx ON public.sessions USING GIN (metadata_3 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata4_gin_idx ON public.sessions USING GIN (metadata_4 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata5_gin_idx ON public.sessions USING GIN (metadata_5 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata6_gin_idx ON public.sessions USING GIN (metadata_6 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata7_gin_idx ON public.sessions USING GIN (metadata_7 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata8_gin_idx ON public.sessions USING GIN (metadata_8 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata9_gin_idx ON public.sessions USING GIN (metadata_9 gin_trgm_ops);
|
|
CREATE INDEX sessions_metadata10_gin_idx ON public.sessions USING GIN (metadata_10 gin_trgm_ops);
|
|
CREATE INDEX sessions_user_device_gin_idx ON public.sessions USING GIN (user_device gin_trgm_ops);
|
|
CREATE INDEX sessions_user_id_gin_idx ON public.sessions USING GIN (user_id gin_trgm_ops);
|
|
CREATE INDEX sessions_user_anonymous_id_gin_idx ON public.sessions USING GIN (user_anonymous_id gin_trgm_ops);
|
|
CREATE INDEX sessions_start_ts_idx ON public.sessions (start_ts) WHERE duration > 0;
|
|
CREATE INDEX sessions_project_id_idx ON public.sessions (project_id) WHERE duration > 0;
|
|
CREATE INDEX sessions_session_id_project_id_start_ts_idx ON public.sessions (session_id, project_id, start_ts) WHERE duration > 0;
|
|
CREATE INDEX sessions_session_id_project_id_start_ts_durationNN_idx ON public.sessions (session_id, project_id, start_ts) WHERE duration IS NOT NULL;
|
|
CREATE INDEX sessions_user_id_useridNN_idx ON public.sessions (user_id) WHERE user_id IS NOT NULL;
|
|
CREATE INDEX sessions_uid_projectid_startts_sessionid_uidNN_durGTZ_idx ON public.sessions (user_id, project_id, start_ts, session_id) WHERE user_id IS NOT NULL AND duration > 0;
|
|
CREATE INDEX sessions_utm_source_gin_idx ON public.sessions USING GIN (utm_source gin_trgm_ops);
|
|
CREATE INDEX sessions_utm_medium_gin_idx ON public.sessions USING GIN (utm_medium gin_trgm_ops);
|
|
CREATE INDEX sessions_utm_campaign_gin_idx ON public.sessions USING GIN (utm_campaign gin_trgm_ops);
|
|
CREATE INDEX sessions_base_referrer_gin_idx ON public.sessions USING GIN (base_referrer gin_trgm_ops);
|
|
CREATE INDEX sessions_session_id_has_ut_test_idx ON public.sessions (session_id, has_ut_test);
|
|
|
|
|
|
ALTER TABLE public.sessions
|
|
ADD CONSTRAINT web_browser_constraint CHECK (
|
|
(sessions.platform = 'web' AND sessions.user_browser NOTNULL) OR
|
|
(sessions.platform != 'web' AND sessions.user_browser ISNULL));
|
|
|
|
ALTER TABLE public.sessions
|
|
ADD CONSTRAINT web_user_browser_version_constraint CHECK ( sessions.platform = 'web' OR sessions.user_browser_version ISNULL);
|
|
|
|
|
|
CREATE TABLE public.user_viewed_sessions
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (user_id, session_id)
|
|
);
|
|
|
|
CREATE TABLE public.user_favorite_sessions
|
|
(
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (user_id, session_id)
|
|
);
|
|
CREATE INDEX user_favorite_sessions_user_id_session_id_idx ON public.user_favorite_sessions (user_id, session_id);
|
|
|
|
|
|
CREATE TABLE public.assigned_sessions
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
issue_id text NOT NULL,
|
|
provider oauth_provider NOT NULL,
|
|
created_by integer NOT NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
provider_data jsonb DEFAULT '{}'::jsonb NOT NULL
|
|
);
|
|
CREATE INDEX assigned_sessions_session_id_idx ON public.assigned_sessions (session_id);
|
|
|
|
|
|
CREATE TYPE events_common.custom_level AS ENUM ('info','error');
|
|
|
|
CREATE TABLE events_common.customs
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
name text NOT NULL,
|
|
payload jsonb NOT NULL,
|
|
level events_common.custom_level NOT NULL DEFAULT 'info',
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX customs_name_idx ON events_common.customs (name);
|
|
CREATE INDEX customs_name_gin_idx ON events_common.customs USING GIN (name gin_trgm_ops);
|
|
CREATE INDEX customs_timestamp_idx ON events_common.customs (timestamp);
|
|
|
|
|
|
CREATE TABLE events_common.issues
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
issue_id text NOT NULL REFERENCES public.issues (issue_id) ON DELETE CASCADE,
|
|
payload jsonb DEFAULT NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX issues_issue_id_timestamp_idx ON events_common.issues (issue_id, timestamp);
|
|
CREATE INDEX issues_timestamp_idx ON events_common.issues (timestamp);
|
|
|
|
CREATE TYPE http_method AS ENUM ('GET','HEAD','POST','PUT','DELETE','CONNECT','OPTIONS','TRACE','PATCH');
|
|
|
|
CREATE TABLE events_common.requests
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
url text NOT NULL,
|
|
duration integer NOT NULL,
|
|
success boolean NOT NULL,
|
|
request_body text NULL,
|
|
response_body text NULL,
|
|
status_code smallint NULL,
|
|
method http_method NULL,
|
|
host text NULL,
|
|
path text NULL,
|
|
query text NULL,
|
|
transfer_size bigint NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
|
|
CREATE INDEX requests_duration_idx ON events_common.requests (duration);
|
|
CREATE INDEX requests_timestamp_idx ON events_common.requests (timestamp);
|
|
CREATE INDEX requests_timestamp_session_id_failed_idx ON events_common.requests (timestamp, session_id) WHERE success = FALSE;
|
|
CREATE INDEX requests_request_body_nn_gin_idx ON events_common.requests USING GIN (request_body gin_trgm_ops) WHERE request_body IS NOT NULL;
|
|
CREATE INDEX requests_response_body_nn_gin_idx ON events_common.requests USING GIN (response_body gin_trgm_ops) WHERE response_body IS NOT NULL;
|
|
CREATE INDEX requests_status_code_nn_idx ON events_common.requests (status_code) WHERE status_code IS NOT NULL;
|
|
CREATE INDEX requests_session_id_status_code_nn_idx ON events_common.requests (session_id, status_code) WHERE status_code IS NOT NULL;
|
|
CREATE INDEX requests_host_nn_gin_idx ON events_common.requests USING GIN (host gin_trgm_ops) WHERE host IS NOT NULL;
|
|
CREATE INDEX requests_path_nn_idx ON events_common.requests (path) WHERE path IS NOT NULL;
|
|
CREATE INDEX requests_path_nn_gin_idx ON events_common.requests USING GIN (path gin_trgm_ops) WHERE path IS NOT NULL;
|
|
CREATE INDEX requests_query_nn_gin_idx ON events_common.requests USING GIN (query gin_trgm_ops) WHERE query IS NOT NULL;
|
|
|
|
|
|
CREATE TABLE events.pages
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
host text NOT NULL,
|
|
path text NOT NULL,
|
|
query text NULL,
|
|
referrer text DEFAULT NULL,
|
|
base_referrer text DEFAULT NULL,
|
|
dom_building_time integer DEFAULT NULL,
|
|
dom_content_loaded_time integer DEFAULT NULL,
|
|
load_time integer DEFAULT NULL,
|
|
first_paint_time integer DEFAULT NULL,
|
|
first_contentful_paint_time integer DEFAULT NULL,
|
|
speed_index integer DEFAULT NULL,
|
|
visually_complete integer DEFAULT NULL,
|
|
time_to_interactive integer DEFAULT NULL,
|
|
response_time bigint DEFAULT NULL,
|
|
response_end bigint DEFAULT NULL,
|
|
ttfb integer DEFAULT NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX pages_session_id_idx ON events.pages (session_id);
|
|
CREATE INDEX pages_base_referrer_gin_idx ON events.pages USING GIN (base_referrer gin_trgm_ops);
|
|
CREATE INDEX pages_timestamp_idx ON events.pages (timestamp);
|
|
CREATE INDEX pages_session_id_timestamp_idx ON events.pages (session_id, timestamp);
|
|
CREATE INDEX pages_base_referrer_idx ON events.pages (base_referrer);
|
|
CREATE INDEX pages_response_time_idx ON events.pages (response_time);
|
|
CREATE INDEX pages_response_end_idx ON events.pages (response_end);
|
|
CREATE INDEX pages_path_gin_idx ON events.pages USING GIN (path gin_trgm_ops);
|
|
CREATE INDEX pages_path_idx ON events.pages (path);
|
|
CREATE INDEX pages_visually_complete_idx ON events.pages (visually_complete) WHERE visually_complete > 0;
|
|
CREATE INDEX pages_dom_building_time_idx ON events.pages (dom_building_time) WHERE dom_building_time > 0;
|
|
CREATE INDEX pages_load_time_idx ON events.pages (load_time) WHERE load_time > 0;
|
|
CREATE INDEX pages_first_contentful_paint_time_idx ON events.pages (first_contentful_paint_time) WHERE first_contentful_paint_time > 0;
|
|
CREATE INDEX pages_dom_content_loaded_time_idx ON events.pages (dom_content_loaded_time) WHERE dom_content_loaded_time > 0;
|
|
CREATE INDEX pages_first_paint_time_idx ON events.pages (first_paint_time) WHERE first_paint_time > 0;
|
|
CREATE INDEX pages_ttfb_idx ON events.pages (ttfb) WHERE ttfb > 0;
|
|
CREATE INDEX pages_time_to_interactive_idx ON events.pages (time_to_interactive) WHERE time_to_interactive > 0;
|
|
CREATE INDEX pages_session_id_timestamp_loadgt0NN_idx ON events.pages (session_id, timestamp) WHERE load_time > 0 AND load_time IS NOT NULL;
|
|
CREATE INDEX pages_session_id_timestamp_visualgt0nn_idx ON events.pages (session_id, timestamp) WHERE visually_complete > 0 AND visually_complete IS NOT NULL;
|
|
CREATE INDEX pages_timestamp_metgt0_idx ON events.pages (timestamp) WHERE response_time > 0 OR
|
|
first_paint_time > 0 OR
|
|
dom_content_loaded_time > 0 OR
|
|
ttfb > 0 OR
|
|
time_to_interactive > 0;
|
|
CREATE INDEX pages_session_id_speed_indexgt0nn_idx ON events.pages (session_id, speed_index) WHERE speed_index > 0 AND speed_index IS NOT NULL;
|
|
CREATE INDEX pages_session_id_timestamp_dom_building_timegt0nn_idx ON events.pages (session_id, timestamp, dom_building_time) WHERE dom_building_time > 0 AND dom_building_time IS NOT NULL;
|
|
CREATE INDEX pages_path_session_id_timestamp_idx ON events.pages (path, session_id, timestamp);
|
|
CREATE INDEX pages_path_pathLNGT2_idx ON events.pages (path) WHERE length(path) > 2;
|
|
CREATE INDEX pages_query_nn_idx ON events.pages (query) WHERE query IS NOT NULL;
|
|
CREATE INDEX pages_query_nn_gin_idx ON events.pages USING GIN (query gin_trgm_ops) WHERE query IS NOT NULL;
|
|
|
|
|
|
CREATE TABLE events.clicks
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
label text DEFAULT NULL,
|
|
url text DEFAULT '' NOT NULL,
|
|
path text,
|
|
selector text DEFAULT '' NOT NULL,
|
|
hesitation integer DEFAULT NULL,
|
|
normalized_x decimal DEFAULT NULL,
|
|
normalized_y decimal DEFAULT NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX clicks_session_id_idx ON events.clicks (session_id);
|
|
CREATE INDEX clicks_label_idx ON events.clicks (label);
|
|
CREATE INDEX clicks_label_gin_idx ON events.clicks USING GIN (label gin_trgm_ops);
|
|
CREATE INDEX clicks_timestamp_idx ON events.clicks (timestamp);
|
|
CREATE INDEX clicks_label_session_id_timestamp_idx ON events.clicks (label, session_id, timestamp);
|
|
CREATE INDEX clicks_url_idx ON events.clicks (url);
|
|
CREATE INDEX clicks_url_session_id_timestamp_selector_idx ON events.clicks (url, session_id, timestamp, selector);
|
|
CREATE INDEX clicks_session_id_timestamp_idx ON events.clicks (session_id, timestamp);
|
|
CREATE INDEX clicks_selector_idx ON events.clicks (selector);
|
|
CREATE INDEX clicks_path_idx ON events.clicks (path);
|
|
CREATE INDEX clicks_path_gin_idx ON events.clicks USING GIN (path gin_trgm_ops);
|
|
|
|
CREATE TABLE events.inputs
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
label text DEFAULT NULL,
|
|
value text DEFAULT NULL,
|
|
duration integer DEFAULT NULL,
|
|
hesitation integer DEFAULT NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX inputs_session_id_idx ON events.inputs (session_id);
|
|
CREATE INDEX inputs_label_gin_idx ON events.inputs USING GIN (label gin_trgm_ops);
|
|
CREATE INDEX inputs_timestamp_idx ON events.inputs (timestamp);
|
|
CREATE INDEX inputs_label_session_id_timestamp_idx ON events.inputs (label, session_id, timestamp);
|
|
|
|
CREATE TABLE events.errors
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
error_id text NOT NULL REFERENCES public.errors (error_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX errors_session_id_idx ON events.errors (session_id);
|
|
CREATE INDEX errors_timestamp_idx ON events.errors (timestamp);
|
|
CREATE INDEX errors_session_id_timestamp_error_id_idx ON events.errors (session_id, timestamp, error_id);
|
|
CREATE INDEX errors_error_id_timestamp_idx ON events.errors (error_id, timestamp);
|
|
CREATE INDEX errors_timestamp_error_id_session_id_idx ON events.errors (timestamp, error_id, session_id);
|
|
CREATE INDEX errors_error_id_timestamp_session_id_idx ON events.errors (error_id, timestamp, session_id);
|
|
CREATE INDEX errors_error_id_idx ON events.errors (error_id);
|
|
|
|
|
|
CREATE TABLE events.graphql
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
name text NOT NULL,
|
|
request_body text NULL,
|
|
response_body text NULL,
|
|
method http_method NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX graphql_name_idx ON events.graphql (name);
|
|
CREATE INDEX graphql_session_id_idx ON events.graphql (session_id);
|
|
CREATE INDEX graphql_name_gin_idx ON events.graphql USING GIN (name gin_trgm_ops);
|
|
CREATE INDEX graphql_timestamp_idx ON events.graphql (timestamp);
|
|
CREATE INDEX graphql_request_body_nn_idx ON events.graphql (request_body) WHERE request_body IS NOT NULL;
|
|
CREATE INDEX graphql_request_body_nn_gin_idx ON events.graphql USING GIN (request_body gin_trgm_ops) WHERE request_body IS NOT NULL;
|
|
CREATE INDEX graphql_response_body_nn_idx ON events.graphql (response_body) WHERE response_body IS NOT NULL;
|
|
CREATE INDEX graphql_response_body_nn_gin_idx ON events.graphql USING GIN (response_body gin_trgm_ops) WHERE response_body IS NOT NULL;
|
|
|
|
CREATE TABLE events.state_actions
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
name text NOT NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX state_actions_name_gin_idx ON events.state_actions USING GIN (name gin_trgm_ops);
|
|
CREATE INDEX state_actions_timestamp_idx ON events.state_actions (timestamp);
|
|
|
|
CREATE TYPE events.resource_type AS ENUM ('other', 'script', 'stylesheet', 'fetch', 'img', 'media');
|
|
CREATE TYPE events.resource_method AS ENUM ('GET' , 'HEAD' , 'POST' , 'PUT' , 'DELETE' , 'CONNECT' , 'OPTIONS' , 'TRACE' , 'PATCH' );
|
|
CREATE TABLE events.resources
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
message_id bigint NOT NULL,
|
|
timestamp bigint NOT NULL,
|
|
duration bigint NULL,
|
|
type events.resource_type NOT NULL,
|
|
url text NOT NULL,
|
|
url_host text NOT NULL,
|
|
url_hostpath text NOT NULL,
|
|
success boolean NOT NULL,
|
|
status smallint NULL,
|
|
method events.resource_method NULL,
|
|
ttfb bigint NULL,
|
|
header_size bigint NULL,
|
|
encoded_body_size integer NULL,
|
|
decoded_body_size integer NULL,
|
|
PRIMARY KEY (session_id, message_id, timestamp)
|
|
);
|
|
CREATE INDEX resources_session_id_idx ON events.resources (session_id);
|
|
CREATE INDEX resources_status_idx ON events.resources (status);
|
|
CREATE INDEX resources_type_idx ON events.resources (type);
|
|
CREATE INDEX resources_url_host_idx ON events.resources (url_host);
|
|
CREATE INDEX resources_timestamp_idx ON events.resources (timestamp);
|
|
CREATE INDEX resources_success_idx ON events.resources (success);
|
|
|
|
CREATE INDEX resources_url_hostpath_gin_idx ON events.resources USING GIN (url_hostpath gin_trgm_ops);
|
|
CREATE INDEX resources_timestamp_type_durationgt0NN_idx ON events.resources (timestamp, type) WHERE duration > 0 AND duration IS NOT NULL;
|
|
CREATE INDEX resources_session_id_timestamp_type_idx ON events.resources (session_id, timestamp, type);
|
|
CREATE INDEX resources_timestamp_type_durationgt0NN_noFetch_idx ON events.resources (timestamp, type) WHERE duration > 0 AND duration IS NOT NULL AND type != 'fetch';
|
|
CREATE INDEX resources_session_id_timestamp_url_host_fail_idx ON events.resources (session_id, timestamp, url_host) WHERE success = FALSE;
|
|
CREATE INDEX resources_session_id_timestamp_url_host_firstparty_idx ON events.resources (session_id, timestamp, url_host) WHERE type IN ('fetch', 'script');
|
|
CREATE INDEX resources_session_id_timestamp_duration_durationgt0NN_img_idx ON events.resources (session_id, timestamp, duration) WHERE duration > 0 AND duration IS NOT NULL AND type = 'img';
|
|
CREATE INDEX resources_timestamp_session_id_idx ON events.resources (timestamp, session_id);
|
|
CREATE INDEX resources_timestamp_duration_durationgt0NN_idx ON events.resources (timestamp, duration) WHERE duration > 0 AND duration IS NOT NULL;
|
|
|
|
CREATE TABLE events.performance
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
message_id bigint NOT NULL,
|
|
host text NULL DEFAULT NULL,
|
|
path text NULL DEFAULT NULL,
|
|
query text NULL DEFAULT NULL,
|
|
min_fps smallint NOT NULL,
|
|
avg_fps smallint NOT NULL,
|
|
max_fps smallint NOT NULL,
|
|
min_cpu smallint NOT NULL,
|
|
avg_cpu smallint NOT NULL,
|
|
max_cpu smallint NOT NULL,
|
|
min_total_js_heap_size bigint NOT NULL,
|
|
avg_total_js_heap_size bigint NOT NULL,
|
|
max_total_js_heap_size bigint NOT NULL,
|
|
min_used_js_heap_size bigint NOT NULL,
|
|
avg_used_js_heap_size bigint NOT NULL,
|
|
max_used_js_heap_size bigint NOT NULL,
|
|
PRIMARY KEY (session_id, message_id)
|
|
);
|
|
CREATE INDEX performance_session_id_idx ON events.performance (session_id);
|
|
CREATE INDEX performance_timestamp_idx ON events.performance (timestamp);
|
|
CREATE INDEX performance_session_id_timestamp_idx ON events.performance (session_id, timestamp);
|
|
CREATE INDEX performance_avg_cpu_gt0_idx ON events.performance (avg_cpu) WHERE avg_cpu > 0;
|
|
CREATE INDEX performance_avg_used_js_heap_size_gt0_idx ON events.performance (avg_used_js_heap_size) WHERE avg_used_js_heap_size > 0;
|
|
|
|
|
|
CREATE TABLE public.autocomplete
|
|
(
|
|
value text NOT NULL,
|
|
type text NOT NULL,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE
|
|
);
|
|
|
|
CREATE UNIQUE INDEX autocomplete_unique_project_id_md5value_type_idx ON public.autocomplete (project_id, md5(value), type);
|
|
CREATE INDEX autocomplete_project_id_idx ON public.autocomplete (project_id);
|
|
CREATE INDEX autocomplete_type_idx ON public.autocomplete (type);
|
|
|
|
CREATE INDEX autocomplete_value_clickonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'CLICK';
|
|
CREATE INDEX autocomplete_value_customonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'CUSTOM';
|
|
CREATE INDEX autocomplete_value_graphqlonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'GRAPHQL';
|
|
CREATE INDEX autocomplete_value_inputonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'INPUT';
|
|
CREATE INDEX autocomplete_value_locationonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'LOCATION';
|
|
CREATE INDEX autocomplete_value_referreronly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'REFERRER';
|
|
CREATE INDEX autocomplete_value_requestonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'REQUEST';
|
|
CREATE INDEX autocomplete_value_revidonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'REVID';
|
|
CREATE INDEX autocomplete_value_stateactiononly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'STATEACTION';
|
|
CREATE INDEX autocomplete_value_useranonymousidonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USERANONYMOUSID';
|
|
CREATE INDEX autocomplete_value_userbrowseronly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USERBROWSER';
|
|
CREATE INDEX autocomplete_value_usercountryonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USERCOUNTRY';
|
|
CREATE INDEX autocomplete_value_userdeviceonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USERDEVICE';
|
|
CREATE INDEX autocomplete_value_useridonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USERID';
|
|
CREATE INDEX autocomplete_value_userosonly_gin_idx ON public.autocomplete USING GIN (value gin_trgm_ops) WHERE type = 'USEROS';
|
|
|
|
|
|
CREATE TYPE job_status AS ENUM ('scheduled','running','cancelled','failed','completed');
|
|
CREATE TYPE job_action AS ENUM ('delete_user_data');
|
|
CREATE TABLE public.jobs
|
|
(
|
|
job_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
description text NOT NULL,
|
|
status job_status NOT NULL,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
action job_action NOT NULL,
|
|
reference_id text NOT NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
updated_at timestamp DEFAULT timezone('utc'::text, now()) NULL,
|
|
start_at timestamp NOT NULL,
|
|
errors text NULL
|
|
);
|
|
CREATE INDEX jobs_status_idx ON public.jobs (status);
|
|
CREATE INDEX jobs_start_at_idx ON public.jobs (start_at);
|
|
CREATE INDEX jobs_project_id_idx ON public.jobs (project_id);
|
|
|
|
CREATE TABLE public.metrics
|
|
(
|
|
metric_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
user_id integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
name text NOT NULL,
|
|
is_public boolean NOT NULL DEFAULT TRUE,
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
deleted_at timestamp,
|
|
edited_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
metric_type text NOT NULL DEFAULT 'timeseries',
|
|
view_type text NOT NULL DEFAULT 'lineChart',
|
|
metric_of text NOT NULL DEFAULT 'sessionCount',
|
|
metric_value text[] NOT NULL DEFAULT '{}'::text[],
|
|
metric_format text,
|
|
thumbnail text,
|
|
is_pinned boolean NOT NULL DEFAULT FALSE,
|
|
default_config jsonb NOT NULL DEFAULT '{
|
|
"col": 2,
|
|
"row": 2,
|
|
"position": 0
|
|
}'::jsonb,
|
|
data jsonb NULL,
|
|
card_info jsonb NULL
|
|
);
|
|
CREATE INDEX metrics_user_id_is_public_idx ON public.metrics (user_id, is_public);
|
|
|
|
CREATE TABLE public.metric_series
|
|
(
|
|
series_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
metric_id integer REFERENCES public.metrics (metric_id) ON DELETE CASCADE,
|
|
index integer NOT NULL,
|
|
name text NULL,
|
|
filter jsonb NOT NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
deleted_at timestamp
|
|
);
|
|
CREATE INDEX metric_series_metric_id_idx ON public.metric_series (metric_id);
|
|
|
|
CREATE TABLE public.dashboards
|
|
(
|
|
dashboard_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
user_id integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
name text NOT NULL,
|
|
description text NOT NULL DEFAULT '',
|
|
is_public boolean NOT NULL DEFAULT TRUE,
|
|
is_pinned boolean NOT NULL DEFAULT FALSE,
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
deleted_at timestamp NULL DEFAULT NULL
|
|
);
|
|
|
|
CREATE TABLE public.dashboard_widgets
|
|
(
|
|
widget_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
dashboard_id integer NOT NULL REFERENCES public.dashboards (dashboard_id) ON DELETE CASCADE,
|
|
metric_id integer NOT NULL REFERENCES public.metrics (metric_id) ON DELETE CASCADE,
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
config jsonb NOT NULL DEFAULT '{}'::jsonb
|
|
);
|
|
|
|
|
|
CREATE TABLE public.searches
|
|
(
|
|
search_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
user_id integer NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
name text NOT NULL,
|
|
filter jsonb NOT NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
deleted_at timestamp,
|
|
is_public boolean NOT NULL DEFAULT False
|
|
);
|
|
|
|
CREATE INDEX searches_user_id_is_public_idx ON public.searches (user_id, is_public);
|
|
CREATE INDEX searches_project_id_idx ON public.searches (project_id);
|
|
|
|
CREATE TYPE alert_detection_method AS ENUM ('threshold', 'change');
|
|
CREATE TYPE alert_change_type AS ENUM ('percent', 'change');
|
|
|
|
CREATE TABLE public.alerts
|
|
(
|
|
alert_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
series_id integer NULL REFERENCES public.metric_series (series_id) ON DELETE CASCADE,
|
|
name text NOT NULL,
|
|
description text NULL DEFAULT NULL,
|
|
active boolean NOT NULL DEFAULT TRUE,
|
|
detection_method alert_detection_method NOT NULL,
|
|
change alert_change_type NOT NULL DEFAULT 'change',
|
|
query jsonb NOT NULL,
|
|
deleted_at timestamp NULL DEFAULT NULL,
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
options jsonb NOT NULL DEFAULT '{
|
|
"renotifyInterval": 1440
|
|
}'::jsonb
|
|
);
|
|
CREATE INDEX alerts_project_id_idx ON public.alerts (project_id);
|
|
CREATE INDEX alerts_series_id_idx ON public.alerts (series_id);
|
|
|
|
CREATE TRIGGER on_insert_or_update_or_delete
|
|
AFTER INSERT OR UPDATE OR DELETE
|
|
ON public.alerts
|
|
FOR EACH ROW
|
|
EXECUTE PROCEDURE notify_alert();
|
|
|
|
CREATE TABLE public.sessions_notes
|
|
(
|
|
note_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
message text NOT NULL,
|
|
created_at timestamp without time zone NOT NULL DEFAULT (now() at time zone 'utc'),
|
|
user_id integer NULL REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL,
|
|
tag text NULL,
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
timestamp integer NOT NULL DEFAULT -1,
|
|
is_public boolean NOT NULL DEFAULT FALSE
|
|
);
|
|
|
|
CREATE TABLE public.errors_tags
|
|
(
|
|
key text NOT NULL,
|
|
value text NOT NULL,
|
|
created_at timestamp without time zone NOT NULL default (now() at time zone 'utc'),
|
|
error_id text NOT NULL REFERENCES public.errors (error_id) ON DELETE CASCADE,
|
|
session_id bigint NOT NULL,
|
|
message_id bigint NOT NULL,
|
|
FOREIGN KEY (session_id, message_id) REFERENCES events.errors (session_id, message_id) ON DELETE CASCADE
|
|
);
|
|
|
|
CREATE INDEX errors_tags_error_id_idx ON public.errors_tags (error_id);
|
|
CREATE INDEX errors_tags_session_id_idx ON public.errors_tags (session_id);
|
|
CREATE INDEX errors_tags_message_id_idx ON public.errors_tags (message_id);
|
|
|
|
|
|
CREATE TABLE public.projects_stats
|
|
(
|
|
project_id integer NOT NULL,
|
|
created_at timestamp default (now() AT TIME ZONE 'utc'::text),
|
|
sessions_count integer NOT NULL DEFAULT 0,
|
|
events_count bigint NOT NULL DEFAULT 0,
|
|
last_update_at timestamp default (now() AT TIME ZONE 'utc'::text),
|
|
primary key (project_id, created_at)
|
|
);
|
|
|
|
CREATE INDEX projects_stats_project_id_idx ON public.projects_stats (project_id);
|
|
|
|
CREATE TABLE public.feature_flags
|
|
(
|
|
feature_flag_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
flag_key text NOT NULL,
|
|
description text DEFAULT NULL,
|
|
payload jsonb DEFAULT NULL,
|
|
flag_type text NOT NULL,
|
|
is_persist boolean NOT NULL DEFAULT FALSE,
|
|
is_active boolean NOT NULL DEFAULT FALSE,
|
|
created_by integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
updated_by integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
created_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
updated_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL
|
|
);
|
|
|
|
CREATE INDEX idx_feature_flags_project_id ON public.feature_flags (project_id);
|
|
|
|
ALTER TABLE public.feature_flags
|
|
ADD CONSTRAINT unique_project_flag_deleted UNIQUE (project_id, flag_key, deleted_at);
|
|
|
|
CREATE TABLE public.feature_flags_conditions
|
|
(
|
|
condition_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
feature_flag_id integer NOT NULL REFERENCES public.feature_flags (feature_flag_id) ON DELETE CASCADE,
|
|
name text NOT NULL,
|
|
rollout_percentage integer NOT NULL,
|
|
filters jsonb NOT NULL DEFAULT '[]'::jsonb
|
|
);
|
|
|
|
CREATE TABLE public.feature_flags_variants
|
|
(
|
|
variant_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
feature_flag_id integer NOT NULL REFERENCES public.feature_flags (feature_flag_id) ON DELETE CASCADE,
|
|
value text NOT NULL,
|
|
description text DEFAULT NULL,
|
|
payload jsonb DEFAULT NULL,
|
|
rollout_percentage integer DEFAULT 0
|
|
);
|
|
|
|
CREATE TABLE public.sessions_feature_flags
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
feature_flag_id integer NOT NULL REFERENCES public.feature_flags (feature_flag_id) ON DELETE CASCADE,
|
|
condition_id integer NULL REFERENCES public.feature_flags_conditions (condition_id) ON DELETE SET NULL
|
|
);
|
|
|
|
|
|
CREATE TABLE events_ios.views
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
name text NOT NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
|
|
CREATE TABLE events_ios.taps
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
label text NOT NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX taps_session_id_idx ON events_ios.taps (session_id);
|
|
CREATE INDEX taps_label_idx ON events_ios.taps (label);
|
|
CREATE INDEX taps_label_gin_idx ON events_ios.taps USING GIN (label gin_trgm_ops);
|
|
CREATE INDEX taps_timestamp_idx ON events_ios.taps (timestamp);
|
|
CREATE INDEX taps_label_session_id_timestamp_idx ON events_ios.taps (label, session_id, timestamp);
|
|
CREATE INDEX taps_session_id_timestamp_idx ON events_ios.taps (session_id, timestamp);
|
|
|
|
|
|
CREATE TABLE events_ios.inputs
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
label text NOT NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX inputs_session_id_idx ON events_ios.inputs (session_id);
|
|
CREATE INDEX inputs_label_gin_idx ON events_ios.inputs USING GIN (label gin_trgm_ops);
|
|
CREATE INDEX inputs_timestamp_idx ON events_ios.inputs (timestamp);
|
|
CREATE INDEX inputs_label_session_id_timestamp_idx ON events_ios.inputs (label, session_id, timestamp);
|
|
|
|
|
|
CREATE TABLE public.crashes_ios
|
|
(
|
|
crash_ios_id text NOT NULL PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
name text NOT NULL,
|
|
reason text NOT NULL,
|
|
stacktrace text NOT NULL
|
|
);
|
|
CREATE INDEX crashes_ios_project_id_crash_id_idx ON public.crashes_ios (project_id, crash_ios_id);
|
|
CREATE INDEX crashes_ios_project_id_idx ON public.crashes_ios (project_id);
|
|
|
|
CREATE TABLE events_common.crashes
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
crash_ios_id text NULL REFERENCES public.crashes_ios (crash_ios_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX crashes_crash_ios_id_timestamp_idx ON events_common.crashes (crash_ios_id, timestamp);
|
|
CREATE INDEX crashes_session_id_idx ON events_common.crashes (session_id);
|
|
CREATE INDEX crashes_timestamp_idx ON events_common.crashes (timestamp);
|
|
|
|
|
|
CREATE TABLE events_ios.swipes
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
label text NOT NULL,
|
|
direction text NOT NULL,
|
|
x integer DEFAULT NULL,
|
|
y integer DEFAULT NULL,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX swipes_session_id_idx ON events_ios.swipes (session_id);
|
|
CREATE INDEX swipes_label_gin_idx ON events_ios.swipes USING GIN (label gin_trgm_ops);
|
|
CREATE INDEX swipes_timestamp_idx ON events_ios.swipes (timestamp);
|
|
CREATE INDEX swipes_label_session_id_timestamp_idx ON events_ios.swipes (label, session_id, timestamp);
|
|
|
|
CREATE TABLE public.tags
|
|
(
|
|
tag_id serial NOT NULL PRIMARY KEY,
|
|
name text NOT NULL,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
selector text NOT NULL,
|
|
ignore_click_rage boolean NOT NULL,
|
|
ignore_dead_click boolean NOT NULL,
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL
|
|
);
|
|
CREATE INDEX tags_project_id_idx ON public.tags (project_id);
|
|
|
|
CREATE TABLE events.tags
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
timestamp bigint NOT NULL,
|
|
seq_index integer NOT NULL,
|
|
tag_id integer NOT NULL REFERENCES public.tags (tag_id) ON DELETE CASCADE,
|
|
PRIMARY KEY (session_id, timestamp, seq_index)
|
|
);
|
|
CREATE INDEX tags_session_id_idx ON events.tags (session_id);
|
|
CREATE INDEX tags_timestamp_idx ON events.tags (timestamp);
|
|
|
|
CREATE TYPE ui_tests_status AS ENUM ('preview', 'in-progress', 'paused', 'closed');
|
|
|
|
CREATE TABLE public.ut_tests
|
|
(
|
|
test_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
title VARCHAR(255) NOT NULL,
|
|
starting_path VARCHAR(255) NULL,
|
|
status ui_tests_status NOT NULL,
|
|
require_mic BOOLEAN DEFAULT FALSE,
|
|
require_camera BOOLEAN DEFAULT FALSE,
|
|
description TEXT NULL,
|
|
guidelines TEXT NULL,
|
|
conclusion_message TEXT NULL,
|
|
created_by integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
updated_by integer REFERENCES public.users (user_id) ON DELETE SET NULL,
|
|
visibility BOOLEAN DEFAULT FALSE,
|
|
created_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
updated_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
deleted_at timestamp without time zone NULL DEFAULT NULL
|
|
);
|
|
|
|
CREATE TABLE public.ut_tests_tasks
|
|
(
|
|
task_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
test_id integer NOT NULL REFERENCES ut_tests (test_id) ON DELETE CASCADE,
|
|
title VARCHAR(255) NOT NULL,
|
|
description TEXT NULL,
|
|
allow_typing BOOLEAN DEFAULT FALSE
|
|
);
|
|
|
|
CREATE TYPE ut_signal_status AS ENUM ('begin', 'done', 'skipped');
|
|
|
|
CREATE TABLE public.ut_tests_signals
|
|
(
|
|
signal_id integer generated BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
session_id BIGINT NULL REFERENCES public.sessions (session_id) ON DELETE SET NULL,
|
|
test_id integer NOT NULL REFERENCES public.ut_tests (test_id) ON DELETE CASCADE,
|
|
task_id integer NULL REFERENCES public.ut_tests_tasks (task_id) ON DELETE CASCADE,
|
|
status ut_signal_status NOT NULL,
|
|
comment TEXT NULL,
|
|
timestamp BIGINT NOT NULL,
|
|
duration BIGINT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX ut_tests_signals_unique_session_id_test_id_task_id_ts_idx ON public.ut_tests_signals (session_id, test_id, task_id, timestamp);
|
|
CREATE INDEX ut_tests_signals_session_id_idx ON public.ut_tests_signals (session_id);
|
|
|
|
CREATE TABLE events.canvas_recordings
|
|
(
|
|
session_id bigint NOT NULL REFERENCES public.sessions (session_id) ON DELETE CASCADE,
|
|
recording_id text NOT NULL,
|
|
timestamp bigint NOT NULL
|
|
);
|
|
CREATE INDEX canvas_recordings_session_id_idx ON events.canvas_recordings (session_id);
|
|
|
|
CREATE TABLE public.projects_conditions
|
|
(
|
|
condition_id integer GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
name varchar(255) NOT NULL,
|
|
capture_rate integer NOT NULL CHECK (capture_rate >= 0 AND capture_rate <= 100),
|
|
filters jsonb NOT NULL DEFAULT '[]'::jsonb
|
|
);
|
|
|
|
CREATE TABLE or_cache.autocomplete_top_values
|
|
(
|
|
project_id integer NOT NULL REFERENCES public.projects (project_id) ON DELETE CASCADE,
|
|
event_type text NOT NULL,
|
|
event_key text NULL,
|
|
result jsonb NULL,
|
|
execution_time integer NULL,
|
|
created_at timestamp DEFAULT timezone('utc'::text, now()) NOT NULL,
|
|
UNIQUE NULLS NOT DISTINCT (project_id, event_type, event_key)
|
|
);
|
|
|
|
CREATE SCHEMA IF NOT EXISTS spots;
|
|
|
|
CREATE TABLE IF NOT EXISTS spots.spots
|
|
(
|
|
spot_id BIGINT NOT NULL PRIMARY KEY,
|
|
name TEXT NOT NULL,
|
|
user_id BIGINT NOT NULL REFERENCES public.users (user_id) ON DELETE CASCADE,
|
|
tenant_id BIGINT NOT NULL,
|
|
duration INT NOT NULL,
|
|
crop INT[],
|
|
comments TEXT[],
|
|
status TEXT DEFAULT 'pending',
|
|
created_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()),
|
|
updated_at timestamp DEFAULT NULL,
|
|
deleted_at timestamp DEFAULT NULL
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS spots.keys
|
|
(
|
|
spot_key TEXT NOT NULL PRIMARY KEY,
|
|
spot_id BIGINT NOT NULL UNIQUE REFERENCES spots.spots (spot_id) ON DELETE CASCADE,
|
|
user_id BIGINT NOT NULL,
|
|
expiration BIGINT NOT NULL,
|
|
expired_at timestamp NOT NULL,
|
|
created_at timestamp NOT NULL,
|
|
updated_at timestamp DEFAULT NULL
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS spots.streams
|
|
(
|
|
spot_id BIGINT NOT NULL PRIMARY KEY REFERENCES spots.spots (spot_id) ON DELETE CASCADE,
|
|
original_playlist TEXT NOT NULL,
|
|
modified_playlist TEXT NOT NULL,
|
|
created_at timestamp NOT NULL,
|
|
expired_at timestamp NOT NULL
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS spots.tasks
|
|
(
|
|
spot_id BIGINT NOT NULL PRIMARY KEY REFERENCES spots.spots (spot_id) ON DELETE CASCADE,
|
|
duration INT NOT NULL,
|
|
crop INT[],
|
|
status TEXT NOT NULL,
|
|
error TEXT DEFAULT NULL,
|
|
added_time timestamp NOT NULL
|
|
);
|
|
|
|
COMMIT; |