summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndriy Sokolovskiy <sokandpal@yandex.ru>2014-12-06 22:43:19 +0200
committerTim Graham <timograham@gmail.com>2014-12-15 14:41:52 -0500
commitd8f3b86a7691c8aa0ec8f5a064ad4c3218250fed (patch)
tree1254c5a75a4a311ec73208ceb71c2e49edff6494 /docs
parentd39461eb46b2d11051940e16818baf2f0e1b894d (diff)
Fixed #23405 -- Fixed makemigrations prompt when adding Text/CharField.
A default is no longer required.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 338bfdd54c..ea086490cf 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -140,3 +140,6 @@ Bugfixes
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`).
+
+* ``makemigrations`` no longer prompts for a default value when adding
+ ``TextField()`` or ``CharField()`` without a ``default`` (:ticket:`23405`).