summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-06-10 09:39:08 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-06-10 20:05:55 +0200
commit826a1659eed0b23f5b814d5a293eeaca20d29a6c (patch)
treeefe2eeda0f6195a3fe0fd7b206e04290cb393000 /docs
parentbb29174f942dd60da4ccfcf38fb423fb21ed159a (diff)
[3.2.x] Fixed #32832 -- Fixed adding BLOB/TEXT nullable field with default on MySQL 8.0.13+.
Regression in d4ac23bee1c84d8e4610350202ac068fc90f38c0. Thanks Omkar Deshpande for the report. Backport of fa0433d05f213afe4c67055006320f7aba4c8108 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.5.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.5.txt b/docs/releases/3.2.5.txt
index f426d437ee..05d824fc25 100644
--- a/docs/releases/3.2.5.txt
+++ b/docs/releases/3.2.5.txt
@@ -16,3 +16,7 @@ Bugfixes
* Fixed a bug in Django 3.2 that caused a migration crash on MySQL 8.0.13+ when
altering ``BinaryField``, ``JSONField``, or ``TextField`` to non-nullable
(:ticket:`32503`).
+
+* Fixed a regression in Django 3.2 that caused a migration crash on MySQL
+ 8.0.13+ when adding nullable ``BinaryField``, ``JSONField``, or ``TextField``
+ with a default value (:ticket:`32832`).