mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08: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;
|