change(db): ee related init schema updated for notes
This commit is contained in:
parent
2dcbfe2ef9
commit
1efe5c87e8
1 changed files with 6 additions and 2 deletions
|
|
@ -937,7 +937,11 @@ CREATE TABLE public.sessions_notes
|
|||
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
|
||||
is_public boolean NOT NULL DEFAULT FALSE,
|
||||
thumbnail text NULL,
|
||||
updated_at timestamp without time zone NULL DEFAULT NULL,
|
||||
start_at integer NULL,
|
||||
end_at integer NULL
|
||||
);
|
||||
|
||||
CREATE TABLE public.errors_tags
|
||||
|
|
@ -1327,4 +1331,4 @@ CREATE TABLE IF NOT EXISTS public.session_integrations
|
|||
PRIMARY KEY (session_id, project_id, provider)
|
||||
);
|
||||
|
||||
COMMIT;
|
||||
COMMIT;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue