mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
5 lines
196 B
PL/PgSQL
5 lines
196 B
PL/PgSQL
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;
|