We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I think it should be a good feature to add case-insensitivity.
So that would be this in MySql:
LOWER(posts.title) LIKE (?)
or this in PostgeSQL:
posts.title ILIKE (?)
So, maybe it could be:
Post.where.ilike(title: "%rails%") Post.where.not_ilike(title: "%rails%")