mirror of https://github.com/django/django.git
Fixed #33198 -- Corrected BinaryField.max_length docs.
This commit is contained in:
parent
569a33579c
commit
0d4e575c96
|
@ -573,8 +573,8 @@ case it can't be included in a :class:`~django.forms.ModelForm`.
|
||||||
|
|
||||||
.. attribute:: BinaryField.max_length
|
.. attribute:: BinaryField.max_length
|
||||||
|
|
||||||
The maximum length (in characters) of the field. The maximum length is
|
The maximum length (in bytes) of the field. The maximum length is enforced
|
||||||
enforced in Django's validation using
|
in Django's validation using
|
||||||
:class:`~django.core.validators.MaxLengthValidator`.
|
:class:`~django.core.validators.MaxLengthValidator`.
|
||||||
|
|
||||||
.. admonition:: Abusing ``BinaryField``
|
.. admonition:: Abusing ``BinaryField``
|
||||||
|
|
Loading…
Reference in New Issue