Rails pg jsonb column search method
This file contains 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
# heading jsonb cloumn, and title a field inside jsonb search in jsonb | |
# heading: { title: "ABC" } | |
# For detail look at http://edgeguides.rubyonrails.org/active_record_postgresql.html#json-and-jsonb | |
def self.search(search) | |
q = "%#{search.downcase}%" | |
where("lower(heading ->> 'title') LIKE ?", q) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment