migration.sql 546 B

12345678910111213141516171819202122
  1. -- This is a custom migration file which is not generated by Prisma.
  2. -- The aim of this migration is to add text search indices to the TeamCollection and TeamRequest tables.
  3. -- Create Extension
  4. CREATE EXTENSION IF NOT EXISTS pg_trgm;
  5. -- Create GIN Trigram Index for Team Collection title
  6. CREATE INDEX
  7. "TeamCollection_title_trgm_idx"
  8. ON
  9. "TeamCollection"
  10. USING
  11. GIN (title gin_trgm_ops);
  12. -- Create GIN Trigram Index for Team Collection title
  13. CREATE INDEX
  14. "TeamRequest_title_trgm_idx"
  15. ON
  16. "TeamRequest"
  17. USING
  18. GIN (title gin_trgm_ops);