summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-07-20 07:33:03 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-07-26 11:41:19 +0200
commitc773d5794eb425c4836c726bdf6e1e742c94e9c0 (patch)
tree823959f2181eb55d010385ffc3fbcda34e102b21 /docs
parent7bdb682215de3bf7f8f38f8161b175c225ee25fa (diff)
Refs #27236 -- Reverted AlterIndexTogether deprecation.
This partly reverts a6385b382e05a614a99e5a5913d8e631823159a2.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt3
-rw-r--r--docs/ref/checks.txt6
-rw-r--r--docs/ref/migration-operations.txt7
-rw-r--r--docs/releases/4.2.txt2
4 files changed, 0 insertions, 18 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 80597eb95b..a12834c431 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -19,9 +19,6 @@ details on these changes.
* The model's ``Meta.index_together`` option will be removed.
-* The ``AlterIndexTogether`` migration operation will be removed. A stub
- operation will remain for compatibility with historical migrations.
-
* The ``length_is`` template filter will be removed.
* The ``django.contrib.auth.hashers.SHA1PasswordHasher``,
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 8dbada5787..55e4ca64b2 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -397,12 +397,6 @@ Models
* **models.W045**: Check constraint ``<constraint>`` contains ``RawSQL()``
expression and won't be validated during the model ``full_clean()``.
-Migrations
-----------
-
-* **migrations.W001**: ``AlterIndexTogether`` is deprecated. Support for it
- (except in historical migrations) will be removed in Django 5.1.
-
Security
--------
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt
index b3d8992738..f8bfc4fb6b 100644
--- a/docs/ref/migration-operations.txt
+++ b/docs/ref/migration-operations.txt
@@ -106,13 +106,6 @@ Changes the model's set of custom indexes (the
:attr:`~django.db.models.Options.index_together` option on the ``Meta``
subclass).
-.. deprecated:: 4.2
-
- ``AlterIndexTogether`` is deprecated in favor of
- :class:`~django.db.migrations.operations.AddIndex`,
- :class:`~django.db.migrations.operations.RemoveIndex`, and
- :class:`~django.db.migrations.operations.RenameIndex` operations.
-
``AlterOrderWithRespectTo``
---------------------------
diff --git a/docs/releases/4.2.txt b/docs/releases/4.2.txt
index ad061857bf..3b8ae5596c 100644
--- a/docs/releases/4.2.txt
+++ b/docs/releases/4.2.txt
@@ -319,8 +319,6 @@ Miscellaneous
<https://docs.python.org/3/library/secrets.html#recipes-and-best-practices>`_
for using Python's :py:mod:`secrets` module to generate passwords.
-* The ``AlterIndexTogether`` migration operation is deprecated.
-
* The ``length_is`` template filter is deprecated in favor of :tfilter:`length`
and the ``==`` operator within an :ttag:`{% if %}<if>` tag. For example