mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
25f1ddbf5e
Add 'hidden' property to 'coder_app' resource to allow hiding apps from the UI.
5 lines
178 B
SQL
5 lines
178 B
SQL
ALTER TABLE workspace_apps ADD COLUMN hidden boolean NOT NULL DEFAULT false;
|
|
|
|
COMMENT ON COLUMN workspace_apps.hidden
|
|
IS 'Determines if the app is not shown in user interfaces.'
|