Some checks failed
CI / build-and-test (push) Failing after -31m53s
* Implement maintenance page with task and log display * Add backfill and metadata retry functionality * Integrate grid component for project display in thoughts page * Update types for maintenance tasks and logs * Enhance sidebar and shell for new maintenance navigation
4 lines
204 B
SQL
4 lines
204 B
SQL
-- Full-text search index on thought content for semantic fallback when no embeddings exist.
|
|
create index if not exists thoughts_content_fts_idx
|
|
on thoughts using gin(to_tsvector('simple', content));
|