summaryrefslogtreecommitdiff
path: root/docs/topics/db
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/db')
-rw-r--r--docs/topics/db/models.txt5
-rw-r--r--docs/topics/db/queries.txt2
-rw-r--r--docs/topics/db/sql.txt5
-rw-r--r--docs/topics/db/transactions.txt4
4 files changed, 0 insertions, 16 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 1c4e99817f..b8d6c30a27 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -274,11 +274,6 @@ sees you've explicitly set :attr:`Field.primary_key`, it won't add the automatic
Each model requires exactly one field to have :attr:`primary_key=True
<Field.primary_key>` (either explicitly declared or automatically added).
-.. versionchanged:: 3.2
-
- In older versions, auto-created primary key fields were always
- :class:`AutoField`\s.
-
.. _verbose-field-names:
Verbose field names
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index ac425e99f4..c24c06da68 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -670,8 +670,6 @@ The ``F()`` objects support bitwise operations by ``.bitand()``, ``.bitor()``,
Expressions can reference transforms
------------------------------------
-.. versionadded:: 3.2
-
Django supports using transforms in expressions.
For example, to find all ``Entry`` objects published in the same year as they
diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt
index 8d3216c60d..4713fb6d50 100644
--- a/docs/topics/db/sql.txt
+++ b/docs/topics/db/sql.txt
@@ -98,11 +98,6 @@ make it very powerful.
both rows will match. To prevent this, perform the correct typecasting
before using the value in a query.
-.. versionchanged:: 3.2
-
- The default value of the ``params`` argument was changed from ``None`` to
- an empty tuple.
-
Mapping query fields to model fields
------------------------------------
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index bffbf94ee6..313aa7d188 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -244,10 +244,6 @@ Django provides a single API to control database transactions.
testing durable atomic blocks in a transaction for performance reasons. Use
:class:`django.test.TransactionTestCase` for testing durability.
-.. versionchanged:: 3.2
-
- The ``durable`` argument was added.
-
Autocommit
==========