Created
February 8, 2017 19:04
-
-
Save pmaojo/f6c0eef7a5dc544bc7f74ceb2eb630c4 to your computer and use it in GitHub Desktop.
Búsqueda sin acentos.
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
#en el modelo | |
#... | |
def self.search(search) | |
where("companies.name ILIKE ?", "%#{search}%") | |
end | |
#... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment