From e01fa71142da45e8505b17b5574c9ec6a9d82914 Mon Sep 17 00:00:00 2001 From: Daniel Roseman Date: Wed, 23 Jul 2014 22:31:31 +0100 Subject: [PATCH] Corrected headings in migration docs. --- docs/ref/migration-operations.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt index cdf1f6b458..99b4a61c86 100644 --- a/docs/ref/migration-operations.txt +++ b/docs/ref/migration-operations.txt @@ -102,7 +102,7 @@ subclass). AlterOrderWithRespectTo ----------------------- -.. class:: AlterIndexTogether(name, order_with_respect_to) +.. class:: AlterOrderWithRespectTo(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`` @@ -111,11 +111,12 @@ subclass. AlterModelOptions ----------------- -.. class:: AlterIndexTogether(name, options) +.. class:: AlterModelOptions(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. +persists these changes for :class:`RunPython` instances to use. ``options`` +should be a dictionary mapping option names to values. AddField --------