mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: add parent_id
column to workspace_agents
table (#17758)
Adds a new nullable column `parent_id` to `workspace_agents` table. This lays the groundwork for having child agents.
This commit is contained in:
@ -0,0 +1,2 @@
|
||||
ALTER TABLE workspace_agents
|
||||
DROP COLUMN IF EXISTS parent_id;
|
@ -0,0 +1,2 @@
|
||||
ALTER TABLE workspace_agents
|
||||
ADD COLUMN parent_id UUID REFERENCES workspace_agents (id) ON DELETE CASCADE;
|
Reference in New Issue
Block a user