I have a django application using models.CharField. The issue is trailing whitespace is removed, which weirdly enough, I DO NOT WANT TO HAPPEN.
I am only accessing the field through the Admin, not a form. I understand through other posts that forms have an strip = False option, but models do not.
Is there an easy way I can achieve this?