I have a charfield in a django model:
sheet = models.CharField(max_length=256, blank=True, null=True)
I am using the default sqlite database.
When I add a new object that has trailing whitespace at the end of this field, Django automatically trims the string. Is there a way to avoid this behaviour?