Fixed #24447 -- Made migrations add FK constraints for existing columns

When altering from e.g. an IntegerField to a ForeignKey, Django didn't
add a constraint.
This commit is contained in:
Jean-Louis Fuchs 2015-03-05 13:41:15 +01:00 committed by Markus Holtermann
parent c36b60836b
commit f4f0060fea
3 changed files with 44 additions and 4 deletions

View file

@ -9,4 +9,5 @@ Django 1.7.6 fixes several bugs in 1.7.5.
Bugfixes
========
* ...
* Fixed a bug that prevented migrations from adding a FK constraint
for an existing column. (:ticket:`24447`).