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:42:08 -0500
commit1690b92b0d53e625ef6623a317149013725015af (patch)
treecaeaf42469d8ac51a487712547134a2fb6bf0f3f /docs
parenteb632bfba51263f9a91e1699be25dac7b7bab53e (diff)
[1.7.x] Fixed #23987 -- Made SQLite SchemaEditor always use effective_default().
Backport of 089047331d972c0ee58d13476fc54f2118bf1359 from master
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`).