Created
April 30, 2012 18:49
-
-
Save ruckus/2561158 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 EXTENSION unaccent; | |
| CREATE TEXT SEARCH CONFIGURATION vinosmith ( COPY = english ); | |
| ALTER TEXT SEARCH CONFIGURATION vinosmith ALTER MAPPING FOR hword, hword_part, word WITH unaccent, english_stem; | |
| CREATE TRIGGER contacts_search_content_trigger BEFORE INSERT OR UPDATE | |
| ON contacts FOR EACH ROW EXECUTE PROCEDURE | |
| tsvector_update_trigger(search_content, 'public.vinosmith', title, name, phone, fax, email, mobile_phone); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment