mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 04:56:20 +02:00
Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
6 lines
330 B
SQL
6 lines
330 B
SQL
-- Support workspace-scoped property listing and counts without blocking writes.
|
|
-- Keep this as the migration's only statement: PostgreSQL rejects CREATE INDEX
|
|
-- CONCURRENTLY inside a transaction or multi-command string.
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_issue_property_workspace
|
|
ON issue_property (workspace_id);
|