spb/company-atlas
Public
Python 66.3%
TypeScript 22.7%
JavaScript 8.6%
HTML 1.4%
CSS 0.7%
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