summaryrefslogtreecommitdiff
path: root/docs/releases/3.0.2.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-12-23 23:28:59 +0100
committerGitHub <noreply@github.com>2019-12-23 23:28:59 +0100
commit22ce5d0031bd795ade081394043833e82046016c (patch)
tree87abd204c71125990771a76c9dfc8d4f3c69e208 /docs/releases/3.0.2.txt
parent5e00bd1f7717149573df9607b848297a520881d3 (diff)
Fixed #31106 -- Fixed migrations crash on PostgreSQL 10+ when adding FK constraints inline and changing data.
This allows adding foreign key constraints inline and changing data in the same migration on PostgreSQL 10+. Regression in 738faf9da2a5cd03148a36375db80746c99c9623. Thanks Janne Rönkkö for the report and Simon Charette for the implementation idea and review.
Diffstat (limited to 'docs/releases/3.0.2.txt')
-rw-r--r--docs/releases/3.0.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.2.txt b/docs/releases/3.0.2.txt
index ccc82b18ae..ebb85d1f46 100644
--- a/docs/releases/3.0.2.txt
+++ b/docs/releases/3.0.2.txt
@@ -14,3 +14,7 @@ Bugfixes
* Fixed a regression in Django 3.0 where ``QuerySet.exists()`` crashed if a
queryset contained an aggregation over a ``Subquery()`` (:ticket:`31109`).
+
+* Fixed a regression in Django 3.0 that caused a migration crash on PostgreSQL
+ 10+ when adding a foreign key and changing data in the same migration
+ (:ticket:`31106`).