summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.10.txt3
-rw-r--r--docs/releases/2.1.5.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/2.0.10.txt b/docs/releases/2.0.10.txt
index ece2521867..18901490e0 100644
--- a/docs/releases/2.0.10.txt
+++ b/docs/releases/2.0.10.txt
@@ -16,3 +16,6 @@ Bugfixes
* Fixed a schema corruption issue on SQLite 3.26+. You might have to drop and
rebuild your SQLite database if you applied a migration while using an older
version of Django with SQLite 3.26 or later (:ticket:`29182`).
+
+* Prevented SQLite schema alterations while foreign key checks are enabled to
+ avoid the possibility of schema corruption (:ticket:`30023`).
diff --git a/docs/releases/2.1.5.txt b/docs/releases/2.1.5.txt
index 9f1f3a4e8a..f5306192a4 100644
--- a/docs/releases/2.1.5.txt
+++ b/docs/releases/2.1.5.txt
@@ -15,3 +15,6 @@ Bugfixes
* Fixed a schema corruption issue on SQLite 3.26+. You might have to drop and
rebuild your SQLite database if you applied a migration while using an older
version of Django with SQLite 3.26 or later (:ticket:`29182`).
+
+* Prevented SQLite schema alterations while foreign key checks are enabled to
+ avoid the possibility of schema corruption (:ticket:`30023`).