summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndriy Sokolovskiy <sokandpal@yandex.ru>2014-12-15 16:14:39 +0200
committerTim Graham <timograham@gmail.com>2014-12-15 13:40:24 -0500
commit089047331d972c0ee58d13476fc54f2118bf1359 (patch)
treed5f65940e68cd277ca39762e3883d6d7e8c1ee09 /docs
parent222699d224ee7851e1cab5ecc029cf83836b882b (diff)
Fixed #23987 -- Made SQLite SchemaEditor always use effective_default().
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 60e4c15e50..2f49d7d889 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -135,3 +135,8 @@ Bugfixes
growth in Django's own test suite (:ticket:`23969`).
* Fixed timesince filter translations in Korean (:ticket:`23989`).
+
+* Fixed the SQLite ``SchemaEditor`` to properly add defaults in the absence of
+ a user specified ``default``. For example, a ``CharField`` with ``blank=True``
+ didn't set existing rows to an empty string which resulted in a crash when
+ adding the ``NOT NULL`` constraint (:ticket:`23987`).