Working with tsvector by creating a trigger that'll provide me with search terms from the text and quotee fields.
tsvector
text
quotee
CREATE TRIGGER searchupdate BEFORE INSERT OR UPDATEON quotes FOR EACH ROW EXECUTE PROCEDUREtsvector_update_trigger( tsvector, 'pg_catalog.english', text, quotee)