mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: add telemetry support for workspace agent subsystem (#7579)
This commit is contained in:
@ -0,0 +1,4 @@
|
||||
BEGIN;
|
||||
ALTER TABLE workspace_agents DROP COLUMN subsystem;
|
||||
DROP TYPE workspace_agent_subsystem;
|
||||
COMMIT;
|
@ -0,0 +1,4 @@
|
||||
BEGIN;
|
||||
CREATE TYPE workspace_agent_subsystem AS ENUM ('envbuilder', 'envbox', 'none');
|
||||
ALTER TABLE workspace_agents ADD COLUMN subsystem workspace_agent_subsystem NOT NULL default 'none';
|
||||
COMMIT;
|
Reference in New Issue
Block a user