Fixed #27089 -- Added database alias to InconsistentMigrationHistory message.

This commit is contained in:
Tim Graham 2016-08-18 18:17:01 -04:00
parent 80c03b06ad
commit ad25fe7350
3 changed files with 10 additions and 2 deletions

View file

@ -65,3 +65,6 @@ Bugfixes
* Reverted a few admin checks that checked ``field.many_to_many`` back to
``isinstance(field, models.ManyToManyField)`` since it turned out the checks
weren't suitable to be generalized like that (:ticket:`26998`).
* Added the database alias to the ``InconsistentMigrationHistory`` message
raised by ``makemigrations`` and ``migrate`` (:ticket:`27089`).