fix: address project audit gaps
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
CREATE INDEX IF NOT EXISTS idx_projects_search
|
||||
ON projects
|
||||
USING gin (to_tsvector('simple', coalesce(name, '') || ' ' || coalesce(description, '')));
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_notes_search
|
||||
ON notes
|
||||
USING gin (to_tsvector('simple', coalesce(title, '') || ' ' || coalesce(markdown, '')));
|
||||
|
||||
Reference in New Issue
Block a user