summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-10-18 21:04:11 +0200
committerGitHub <noreply@github.com>2025-10-18 21:04:11 +0200
commitd506e4a52847ed4fb80754175d76b6b83ff90929 (patch)
tree04fb86a5e8c74229d2dff7430928605b725abc77 /docs/ref/models
parent0c487aa3a7b2417481bf48c1e5355c855873e210 (diff)
Fixed #36671 -- Dropped support for SQLite < 3.37.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/querysets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 164bc9ce54..d9badb690d 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2439,8 +2439,8 @@ This has a number of caveats though:
* If the model's primary key is an :class:`~django.db.models.AutoField` or has
a :attr:`~django.db.models.Field.db_default` value, and ``ignore_conflicts``
is ``False``, the primary key attribute can only be retrieved on certain
- databases (currently PostgreSQL, MariaDB, and SQLite 3.35+). On other
- databases, it will not be set.
+ databases (currently PostgreSQL, MariaDB, and SQLite). On other databases, it
+ will not be set.
* It does not work with many-to-many relationships.
* It casts ``objs`` to a list, which fully evaluates ``objs`` if it's a
generator. The cast allows inspecting all objects so that any objects with a