I want to perform a simple query:
Pizza.object.filter(topping__contains='PEPERONI')
Like this, it works like a charm. But if I try that:
Pizza.object.filter(topping__contains='peperoni')
It is not working.
Do you know why it is case sensitive ? Is there an option to cancel this feature from django ?
