20 lines
772 B
SQL
20 lines
772 B
SQL
CREATE INDEX IF NOT EXISTS idx_notes_search
|
|
ON notes
|
|
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(markdown, '')));
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_sources_search
|
|
ON sources
|
|
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(url, '') || ' ' || coalesce(content_text, '')));
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_inbox_items_search
|
|
ON inbox_items
|
|
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(body, '')));
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_tasks_search
|
|
ON tasks
|
|
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(description, '')));
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_ai_sessions_search
|
|
ON ai_sessions
|
|
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(context, '')));
|