summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHannes Ljungberg <hannes.ljungberg@gmail.com>2021-10-15 22:17:26 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-10-18 09:36:21 +0200
commit00aa3e0b9b8fac8fa5adab47249790d2ee2f767e (patch)
tree5d75c4822d5095e8bbda2ca99a01c9aad06e92ac /docs
parentf5fd03aebe54f28a62436ef81aeed50fef594619 (diff)
[4.0.x] Fixed #33194 -- Fixed migrations when altering a field with functional indexes/unique constraints on SQLite.
This adjusts Expressions.rename_table_references() to only update alias when needed. Regression in 83fcfc9ec8610540948815e127101f1206562ead. Co-authored-by: Simon Charette <charettes@users.noreply.github.com> Backport of 86971c40909430a798e4e55b140004c4b1fb02ff from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.9.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/3.2.9.txt b/docs/releases/3.2.9.txt
index 56cbd1d223..a03542c0b6 100644
--- a/docs/releases/3.2.9.txt
+++ b/docs/releases/3.2.9.txt
@@ -10,4 +10,5 @@ Django 3.2.9 fixes several bugs in 3.2.8 and adds compatibility with Python
Bugfixes
========
-* ...
+* Fixed a bug in Django 3.2 that caused a migration crash on SQLite when
+ altering a field with a functional index (:ticket:`33194`).