mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
7a8da08124
Adds api_version to workspace_agents table Part of #10399
4 lines
93 B
PL/PgSQL
4 lines
93 B
PL/PgSQL
BEGIN;
|
|
ALTER TABLE workspace_agents ADD COLUMN api_version TEXT DEFAULT '' NOT NULL;
|
|
COMMIT;
|