mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
691495d761
This will enable opening the default `dir` of an agent in the VS Code extension!
10 lines
275 B
PL/PgSQL
10 lines
275 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE ONLY workspace_agents
|
|
ADD COLUMN IF NOT EXISTS expanded_directory varchar(4096) DEFAULT '' NOT NULL;
|
|
|
|
COMMENT ON COLUMN workspace_agents.expanded_directory
|
|
IS 'The resolved path of a user-specified directory. e.g. ~/coder -> /home/coder/coder';
|
|
|
|
COMMIT;
|