feat: Allow hide resources (#3977)

This commit is contained in:
Bruno Quaresma
2022-09-09 16:38:00 -03:00
committed by GitHub
parent f6aa025a01
commit 8a94b72c7d
44 changed files with 458 additions and 335 deletions

View File

@ -366,7 +366,8 @@ CREATE TABLE workspace_resources (
job_id uuid NOT NULL,
transition workspace_transition NOT NULL,
type character varying(192) NOT NULL,
name character varying(64) NOT NULL
name character varying(64) NOT NULL,
hide boolean DEFAULT false NOT NULL
);
CREATE TABLE workspaces (