mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 20:45:37 +02:00
* revert(issues): restore server-backed table grouping Co-authored-by: multica-agent <github@multica.ai> * test(skills): stabilize import completion coverage Co-authored-by: multica-agent <github@multica.ai> --------- Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
6 lines
334 B
SQL
6 lines
334 B
SQL
-- Server-side Table grouping filters by workspace before grouping assignees.
|
|
-- Keep the concurrent build isolated so writes to the hot issue table remain
|
|
-- available while existing workspaces are indexed.
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_issue_workspace_assignee
|
|
ON issue (workspace_id, assignee_type, assignee_id);
|