[Answer]-Can we depend on Django not verifying field length?

1👍

It is documented that model validation is not called automatically:

Note that validators will not be run automatically when you save a model, but if you are using a ModelForm, it will run your validators on any fields that are included in your form.

Leave a comment