summaryrefslogtreecommitdiff
path: root/docs/releases/3.0.8.txt
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2020-06-23 23:43:22 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-24 09:00:22 +0200
commit453a5bf3024ed385f95f2f9a5378d8fc03baffc2 (patch)
tree8d9c15becafce0c1fe5c9f146a2ed4319af800e7 /docs/releases/3.0.8.txt
parentf22f660a33f507d3a3b3aa2bff7734df1dfea6f8 (diff)
[3.0.x] Fixed #31735 -- Fixed migrations crash on namespaced inline FK addition on PostgreSQL.
The namespace of the constraint must be included when making the constraint immediate. Regression in 22ce5d0031bd795ade081394043833e82046016c. Thanks Rodrigo Estevao for the report. Backport of 2e8941b6f90e65ffad3f07083b8de59e8ed29767 from master
Diffstat (limited to 'docs/releases/3.0.8.txt')
-rw-r--r--docs/releases/3.0.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.8.txt b/docs/releases/3.0.8.txt
index 6bb3e39de7..f23208f9ae 100644
--- a/docs/releases/3.0.8.txt
+++ b/docs/releases/3.0.8.txt
@@ -18,3 +18,7 @@ Bugfixes
* Reallowed, following a regression in Django 3.0, non-expressions having a
``filterable`` attribute to be used as the right-hand side in queryset
filters (:ticket:`31664`).
+
+* Fixed a regression in Django 3.0.2 that caused a migration crash on
+ PostgreSQL when adding a foreign key to a model with a namespaced
+ ``db_table`` (:ticket:`31735`).