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:
parent
260c4033aa
commit
275c5fd136
2 changed files with 11 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue