summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJarek Glowacki <jarekwg@gmail.com>2016-08-05 09:37:42 +1000
committerTim Graham <timograham@gmail.com>2016-08-05 18:11:38 -0400
commit1e16e141ac7100fe14c6f8837b3871fde13ca9be (patch)
tree493cc4c55a6be533ee27d6dfedbdd2234fcc9156 /docs
parentbfd8f16fbdae1aeaa4d5076721238c041d582e82 (diff)
[1.10.x] Fixed #27004 -- Made migrations consistency check ignore unapplied squashed migrations.
Backport of d117567c7d65c3c28858c4dfc771483b182075e4 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.10.1.txt b/docs/releases/1.10.1.txt
index 8f0756bb9e..89fc2b2b19 100644
--- a/docs/releases/1.10.1.txt
+++ b/docs/releases/1.10.1.txt
@@ -29,3 +29,7 @@ Bugfixes
* Fixed the ``isnull`` lookup on a ``ForeignKey`` with its ``to_field``
pointing to a ``CharField`` (:ticket:`26983`).
+
+* Prevented the ``migrate`` command from raising
+ ``InconsistentMigrationHistory`` in the presence of unapplied squashed
+ migrations (:ticket:`27004`).