mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 20:45:37 +02:00
Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
6 lines
346 B
SQL
6 lines
346 B
SQL
-- Fallback GIN index for SearchIssues title LIKE matches when pg_bigm is not
|
|
-- available. This must stay as a single-statement migration because CREATE
|
|
-- INDEX CONCURRENTLY cannot run inside a transaction or multi-command string.
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_issue_title_trgm
|
|
ON issue USING gin (LOWER(title) gin_trgm_ops);
|