1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #23956 -- Fixed migration creation for multiple table inheritance

This commit is contained in:
Markus Holtermann
2014-12-11 17:52:42 +01:00
committed by Tim Graham
parent 38fc463fbf
commit 44927ba817
3 changed files with 28 additions and 1 deletions

View File

@@ -115,3 +115,7 @@ Bugfixes
* Fixed index creation by the migration infrastructure, particularly when
dealing with PostgreSQL specific {text|varchar}_pattern_ops indexes
(:ticket:`23954`).
* Fixed bug in ``makemigrations`` that created broken migration files when
dealing with multiple table inheritance and inheriting from more than one
model (:ticket:`23956`).