mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-23 18:17:44 +02:00
Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
5 lines
284 B
SQL
5 lines
284 B
SQL
-- This is intentionally a single statement: concurrent index creation cannot
|
|
-- run in a transaction or a multi-command migration.
|
|
CREATE UNIQUE INDEX CONCURRENTLY IF NOT EXISTS issue_label_workspace_type_name_lower_idx
|
|
ON issue_label (workspace_id, resource_type, LOWER(name));
|