There doesn't seem to exist a case independent model.CharField()
in Django? That makes case independent unique values and list look-ups somewhat difficult.
For example, I am trying to do a Model.objects.filter(field__in=[large-str-list])
lookup, with all the str values being randomly uppercase and lowercase. There is a 5-year-old answer here.
Also, ensuring case independent unique-ness of a model.CharField()
can't be done by Django. There is another 5-year-old answer here for that.
I was wondering if there is already a better solution now, maybe in the form of a model.ICharField() that can take care of off these things.