mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
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;
|