1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Removed obsolete sentence in custom model field docs.

This commit is contained in:
Giannis Terzopoulos 2023-11-15 13:48:45 +01:00 committed by GitHub
parent 640283711e
commit 36ed45d27c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -431,9 +431,7 @@ Django when the framework constructs the ``CREATE TABLE`` statements for your
application -- that is, when you first create your tables. The methods are also
called when constructing a ``WHERE`` clause that includes the model field --
that is, when you retrieve data using QuerySet methods like ``get()``,
``filter()``, and ``exclude()`` and have the model field as an argument. They
are not called at any other time, so it can afford to execute slightly complex
code, such as the ``connection.settings_dict`` check in the above example.
``filter()``, and ``exclude()`` and have the model field as an argument.
Some database column types accept parameters, such as ``CHAR(25)``, where the
parameter ``25`` represents the maximum column length. In cases like these,