SPB Git forge
28commits 1branches 0releases
7.7 MBsize
maindefault branch
10 days agolast push
Python 66.3% TypeScript 22.7% JavaScript 8.6% HTML 1.4% CSS 0.7%
404 B · 5 lines sql
Raw Blame History
1-- API (search): trigram indexes for people / product name search (`/search?types=people,products`).2-- Apply once, outside a transaction (CONCURRENTLY), or fold into the next numbered migration.3create index concurrently if not exists people_name_trgm_idx on people using gin (name gin_trgm_ops);4create index concurrently if not exists products_name_trgm_idx on products using gin (name gin_trgm_ops);5