CREATE INDEX post_summary_idx ON post USING GIN (to_tsvector('english', summary)); CREATE INDEX post_site_idx ON post USING GIN (to_tsvector('english', site)); CREATE INDEX post_title_idx ON post USING GIN (to_tsvector('english', title));