Created
May 22, 2014 07:59
-
-
Save osiro/843b391b81f9ca0ecfd3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE INDEX | |
index_project_tsearch_title_description ON projects | |
USING gin(( | |
to_tsvector('english'::regconfig, COALESCE((title)::text, ''::text)) || | |
to_tsvector('english'::regconfig, COALESCE((description)::text, ''::text)) | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment