summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-12-12 05:39:11 +0100
committerGitHub <noreply@github.com>2023-12-12 05:39:11 +0100
commitfcf95e592774a6ededec35481a2061474d467a2b (patch)
treea29be963a35061170cb18d18bcd68dc194fe5728 /docs
parentb287af5dc954628d4b336aefc5027b2edceee64b (diff)
Fixed #35018 -- Fixed migrations crash on GeneratedField with BooleanField as output_field on Oracle < 23c.
Thanks Václav Řehák for the report. Regression in f333e3513e8bdf5ffeb6eeb63021c230082e6f95.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.1.txt b/docs/releases/5.0.1.txt
index 6b0b6de66c..2e720e57f0 100644
--- a/docs/releases/5.0.1.txt
+++ b/docs/releases/5.0.1.txt
@@ -20,3 +20,7 @@ Bugfixes
* Fixed a regression in Django 5.0 that caused a crash of ``Model.save()`` for
models with both ``GeneratedField`` and ``ForeignKey`` fields
(:ticket:`35019`).
+
+* Fixed a bug in Django 5.0 that caused a migration crash on Oracle < 23c when
+ adding a ``GeneratedField`` with ``output_field=BooleanField``
+ (:ticket:`35018`).