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:37:46 +0200
commitf5802a21c401b92764a9f3e2886144f3c5d77573 (patch)
treec5b8cc3293f2bb64286ae2422836b5c171ec843c /docs
parentfdc1c6435c8fb9e720169ef0aebf87c33f1d86c2 (diff)
[3.2.x] Fixed #33194 -- Fixed migrations when altering a field with functional indexes 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`).