Api v1.15.0 (#1639)

* fix(chalice): fixed inter-card pagination

* fix(chalice): fixed path-analysis's density support

* fix(chalice): fixed path-analysis's sessions drill-down

* fix(chalice): path-analysis allow issues when no-path is selected

* fix(DB): added app_crash
This commit is contained in:
Kraiem Taha Yassine 2023-11-09 19:30:04 +01:00 committed by GitHub
parent 260c4033aa
commit 275c5fd136
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View file

@ -124,13 +124,13 @@ ALTER TABLE IF EXISTS public.metrics
CREATE TABLE IF NOT EXISTS public.assist_events
(
event_id varchar NOT NULL PRIMARY KEY,
project_id integer NOT NULL,
session_id varchar NOT NULL,
event_type varchar NOT NULL,
timestamp bigint NOT NULL,
duration integer,
agent_id integer
event_id varchar NOT NULL PRIMARY KEY,
project_id integer NOT NULL,
session_id varchar NOT NULL,
event_type varchar NOT NULL,
timestamp bigint NOT NULL,
duration integer,
agent_id integer
);
CREATE TABLE IF NOT EXISTS public.assist_events_aggregates
@ -163,6 +163,8 @@ SET gdpr=(SELECT *
LIMIT 1)
WHERE jsonb_typeof(gdpr) = 'array';
ALTER TYPE issue_type ADD VALUE IF NOT EXISTS 'app_crash';
COMMIT;
\elif :is_next

View file

@ -132,6 +132,8 @@ SET gdpr=(SELECT *
LIMIT 1)
WHERE jsonb_typeof(gdpr) = 'array';
ALTER TYPE issue_type ADD VALUE IF NOT EXISTS 'app_crash';
COMMIT;
\elif :is_next