fix(pg_schema): session duration DEFAULT NULL
This commit is contained in:
parent
e68b2f4950
commit
0358afc9f0
1 changed files with 1 additions and 1 deletions
|
|
@ -433,7 +433,7 @@ CREATE TABLE sessions
|
||||||
project_id integer NOT NULL REFERENCES projects (project_id) ON DELETE CASCADE,
|
project_id integer NOT NULL REFERENCES projects (project_id) ON DELETE CASCADE,
|
||||||
tracker_version text NOT NULL,
|
tracker_version text NOT NULL,
|
||||||
start_ts bigint NOT NULL,
|
start_ts bigint NOT NULL,
|
||||||
duration integer NOT NULL,
|
duration integer DEFAULT NULL,
|
||||||
rev_id text DEFAULT NULL,
|
rev_id text DEFAULT NULL,
|
||||||
platform platform NOT NULL DEFAULT 'web',
|
platform platform NOT NULL DEFAULT 'web',
|
||||||
is_snippet boolean NOT NULL DEFAULT FALSE,
|
is_snippet boolean NOT NULL DEFAULT FALSE,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue