Making searches universally case insensitive for Postgres
I'm using Postgres, is there a recommended strategy for making searches in string columns case insensitive without having to write dozens of search callbacks for the searchable() method?
1 Reply
Can you give an example of one that you're overriding currently?
Regardless, you can either do this via a macro, or it looks like there is a
->forceSearchCaseInsensitive()
method you can add.