summaryrefslogtreecommitdiff
path: root/docs/releases
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 08:25:23 +0200
commit86971c40909430a798e4e55b140004c4b1fb02ff (patch)
treec0a04010d73086c968ec0bcfe2f7d982ba01d87e /docs/releases
parent0d4e575c96d408e0efb4dfd0cbfc864219776950 (diff)
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>
Diffstat (limited to 'docs/releases')
-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`).