summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-12 05:56:16 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-18 22:12:40 +0200
commit2abf417c815c20f41c0868d6f66520b32347106e (patch)
tree0e02ebe5f1000155268cc8701f412161ebcfecb8 /docs/ref/models
parent00e187961059a0e77403151d2bb38c217101d5af (diff)
Refs #27236 -- Removed Meta.index_together per deprecation timeline.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/options.txt23
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index 2a383b2b88..909577be6c 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -451,29 +451,6 @@ not be looking at your Django code. For example::
The ``ValidationError`` raised during model validation when the constraint
is violated has the ``unique_together`` error code.
-``index_together``
-------------------
-
-.. attribute:: Options.index_together
-
- Sets of field names that, taken together, are indexed::
-
- index_together = [
- ["pub_date", "deadline"],
- ]
-
- This list of fields will be indexed together (i.e. the appropriate
- ``CREATE INDEX`` statement will be issued.)
-
- For convenience, ``index_together`` can be a single list when dealing with a single
- set of fields::
-
- index_together = ["pub_date", "deadline"]
-
- .. deprecated:: 4.2
-
- Use the :attr:`~Options.indexes` option instead.
-
``constraints``
---------------