After following the railscast for creating a search engine, my code looks like this for search titles, and descriptions of posts:
def self.search(search)
if search
where("LOWER (description) LIKE ? OR LOWER (title) LIKE ?", "%#{search.downcase}%" , "%#{search.downcase}%")
else
scoped
end
end
The post table, has_many tags though, and I'd like this search query to search tags as well. Is this possible?