summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorTim Schilling <schillingt@better-simple.com>2020-03-30 21:16:33 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-24 10:10:45 +0200
commita92cc84b4a206d18a5f1a0eaa47f19add40ff99b (patch)
tree6350267f49178ae1aef177c6194d6f55e90b005c /docs/internals
parent34a69c24584ec7d842dbf266659b25527cd73909 (diff)
Refs #31369 -- Deprecated models.NullBooleanField in favor of BooleanField(null=True).
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 76b379ef5a..8d3cc62d90 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -75,6 +75,9 @@ details on these changes.
* Support for passing raw column aliases to ``QuerySet.order_by()`` will be
removed.
+* The model ``NullBooleanField`` will be removed. A stub field will remain for
+ compatibility with historical migrations.
+
See the :ref:`Django 3.1 release notes <deprecated-features-3.1>` for more
details on these changes.