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

Fixed #26384 -- Fixed renaming the PK on a model with a self-referential FK on SQLite.

This commit is contained in:
Alex Hill
2016-03-29 16:58:04 +08:00
committed by Tim Graham
parent 870dd1d38b
commit 4b2cf1cd27
4 changed files with 30 additions and 3 deletions

View File

@@ -43,3 +43,6 @@ Bugfixes
* Fixed a regression with abstract model inheritance and explicit parent links
(:ticket:`26413`).
* Fixed a migrations crash on SQLite when renaming the primary key of a model
containing a ``ForeignKey`` to ``'self'`` (:ticket:`26384`).