mirror of
https://github.com/coleam00/Archon
synced 2026-04-21 13:37:41 +00:00
4 lines
225 B
SQL
4 lines
225 B
SQL
-- Add index for worktree_path lookups (for sharing worktrees between issue/PR)
|
|
CREATE INDEX IF NOT EXISTS idx_remote_agent_conversations_worktree
|
|
ON remote_agent_conversations(worktree_path)
|
|
WHERE worktree_path IS NOT NULL;
|