HotTRDealsBackend/prisma/migrations/20260203013000_add_pg_trgm_search/migration.sql
2026-02-04 06:39:10 +00:00

10 lines
357 B
SQL

-- Enable trigram extension for fast ILIKE/contains searches
CREATE EXTENSION IF NOT EXISTS pg_trgm;
-- GIN trigram indexes for title/description search
CREATE INDEX IF NOT EXISTS "Deal_title_trgm_idx"
ON "Deal" USING GIN ("title" gin_trgm_ops);
CREATE INDEX IF NOT EXISTS "Deal_description_trgm_idx"
ON "Deal" USING GIN ("description" gin_trgm_ops);