PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Matthew Asham   Binkterm PHP   database/migrations/v1.11.0.27_file_search_indexes.sql   Download  
File: database/migrations/v1.11.0.27_file_search_indexes.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Binkterm PHP
Bulletin board system based on the Web
Author: By
Last change:
Date: 5 days ago
Size: 521 bytes
 

Contents

Class file image Download
-- Enable pg_trgm for fast ILIKE / similarity searches CREATE EXTENSION IF NOT EXISTS pg_trgm; -- Trigram indexes on files for fast full-text search CREATE INDEX IF NOT EXISTS idx_files_filename_trgm ON files USING GIN (filename gin_trgm_ops); CREATE INDEX IF NOT EXISTS idx_files_short_description_trgm ON files USING GIN (short_description gin_trgm_ops); -- Composite index for area-scoped status lookups (already common) CREATE INDEX IF NOT EXISTS idx_files_area_status ON files (file_area_id, status);