Skip to content

Instantly share code, notes, and snippets.

@ruckus
Created April 30, 2012 18:49
Show Gist options
  • Select an option

  • Save ruckus/2561158 to your computer and use it in GitHub Desktop.

Select an option

Save ruckus/2561158 to your computer and use it in GitHub Desktop.
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