mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
feat: allow configuring display apps from template (#9100)
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
BEGIN;
|
||||
ALTER TABLE workspace_agents DROP COLUMN display_apps;
|
||||
DROP TYPE display_app;
|
||||
COMMIT;
|
||||
|
@ -0,0 +1,4 @@
|
||||
BEGIN;
|
||||
CREATE TYPE display_app AS ENUM ('vscode', 'vscode_insiders', 'web_terminal', 'ssh_helper', 'port_forwarding_helper');
|
||||
ALTER TABLE workspace_agents ADD column display_apps display_app[] DEFAULT '{vscode, vscode_insiders, web_terminal, ssh_helper, port_forwarding_helper}';
|
||||
COMMIT;
|
Reference in New Issue
Block a user