summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-06-15 14:55:44 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-06-15 14:56:51 -0700
commita8ce5fdc28bdbe091476d49d014d68f8ba4353e7 (patch)
tree32cd5ca0fb78bf2df14843a3d75294c9a2562ceb /docs/ref
parenta58f49d104e5a0d7adb8df1af6f1e36fa37b09b6 (diff)
Fixed #22470: Full migration support for order_with_respect_to
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/migration-operations.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt
index 980b26cdbd..cdf1f6b458 100644
--- a/docs/ref/migration-operations.txt
+++ b/docs/ref/migration-operations.txt
@@ -99,6 +99,24 @@ Changes the model's set of custom indexes (the
:attr:`~django.db.models.Options.index_together` option on the ``Meta``
subclass).
+AlterOrderWithRespectTo
+-----------------------
+
+.. class:: AlterIndexTogether(name, order_with_respect_to)
+
+Makes or deletes the ``_order`` column needed for the
+:attr:`~django.db.models.Options.order_with_respect_to` option on the ``Meta``
+subclass.
+
+AlterModelOptions
+-----------------
+
+.. class:: AlterIndexTogether(name, options)
+
+Stores changes to miscellaneous model options (settings on a model's ``Meta``)
+like ``permissions`` and ``verbose_name``. Does not affect the database, but
+persists these changes for :class:`RunPython` instances to use.
+
AddField
--------