summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGiannis Terzopoulos <terzo.giannis@gmail.com>2023-11-15 13:48:45 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-15 13:53:03 +0100
commitf1e004012ff4b32b8f8329183f4cffd1832e6c95 (patch)
tree462cbcfe50e7cb5c941b656f161131267d502635 /docs
parente9acdff46298f99a2f234a376f6177e7c3216e7d (diff)
[4.2.x] Removed obsolete sentence in custom model field docs.
Backport of 36ed45d27cb97fe3a41eca219ba75ff69f16b93c from main
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-model-fields.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 687da1f23a..d7da71edd2 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -433,9 +433,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,