summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAttila Tovt <uran198@gmail.com>2016-04-02 14:46:59 +0200
committerTim Graham <timograham@gmail.com>2016-04-05 08:52:08 -0400
commit02ae5fd31a56ffb42feadb49c1f3870ba0a24869 (patch)
treeb13a6d9f0b4d6f5da286c9360ddb6acd16613037 /docs
parent6448873197fa4e3df3f5f03201538dc57d7643d6 (diff)
Fixed #25850 -- Made migrate/makemigrations error on inconsistent history.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt
index 96b9d23f62..2e97ff3d54 100644
--- a/docs/releases/1.10.txt
+++ b/docs/releases/1.10.txt
@@ -323,6 +323,10 @@ Migrations
* Added support for :ref:`non-atomic migrations <non-atomic-migrations>` by
setting the ``atomic`` attribute on a ``Migration``.
+* The ``migrate`` and ``makemigrations`` commands now check for a consistent
+ migration history. If they find some unapplied dependencies of an applied
+ migration, ``InconsistentMigrationHistory`` is raised.
+
Models
~~~~~~