summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Hill <alex@hill.net.au>2016-03-29 16:58:04 +0800
committerTim Graham <timograham@gmail.com>2016-03-29 13:25:09 -0400
commit4b2cf1cd27587a30b3b081091627d7ee13141afe (patch)
tree26bd6be85ec277cc843fc3ad7b21da91a952866d /docs
parent870dd1d38b8f9238ddc917bbb55cee54ce37a0b2 (diff)
Fixed #26384 -- Fixed renaming the PK on a model with a self-referential FK on SQLite.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.5.txt b/docs/releases/1.9.5.txt
index 7c50e4883d..fc2c6cea03 100644
--- a/docs/releases/1.9.5.txt
+++ b/docs/releases/1.9.5.txt
@@ -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`).