Files
coder/coderd/database/migrations/000249_workspace_app_hidden.up.sql
Danielle Maywood 25f1ddbf5e feat: add 'hidden' option to 'coder_app' to hide app from UI (#14570)
Add 'hidden' property to 'coder_app' resource to allow hiding apps from the UI.
2024-09-09 14:39:32 +01:00

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.'