Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created June 9, 2018 04:29
Show Gist options
  • Save jordanhudgens/c5d54c423c64acb05d5b5326efb48af5 to your computer and use it in GitHub Desktop.
Save jordanhudgens/c5d54c423c64acb05d5b5326efb48af5 to your computer and use it in GitHub Desktop.
class Guide < ApplicationRecord
include PgSearch
pg_search_scope :search_by_term, against: [:title, :content],
using: {
tsearch: {
any_word: true,
prefix: true
}
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment