How to set min length for models.TextField()?
django
Solution
You would use a custom validator, specifically `MinLengthValidator`
Problem
There seem to be a `max_length` for `CharField` only. But how about `min_length` for a `TextField()`, is there a way to enforce 100 characters in the `TextField`?