diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-18 21:04:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-18 21:04:11 +0200 |
| commit | d506e4a52847ed4fb80754175d76b6b83ff90929 (patch) | |
| tree | 04fb86a5e8c74229d2dff7430928605b725abc77 /docs/ref/models | |
| parent | 0c487aa3a7b2417481bf48c1e5355c855873e210 (diff) | |
Fixed #36671 -- Dropped support for SQLite < 3.37.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
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 |
