mirror of
https://github.com/django/django.git
synced 2025-11-03 05:13:23 +00:00
Refs #31369 -- Deprecated models.NullBooleanField in favor of BooleanField(null=True).
This commit is contained in:
parent
34a69c2458
commit
a92cc84b4a
7 changed files with 37 additions and 2 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -202,6 +202,8 @@ Model fields
|
|||
in historical migrations.
|
||||
* **fields.W902**: ``FloatRangeField`` is deprecated and will be removed in
|
||||
Django 3.1. *This check appeared in Django 2.2 and 3.0*.
|
||||
* **fields.W903**: ``NullBooleanField`` is deprecated. Support for it (except
|
||||
in historical migrations) will be removed in Django 4.0.
|
||||
|
||||
File fields
|
||||
~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -1182,8 +1182,11 @@ values are stored as null.
|
|||
|
||||
.. class:: NullBooleanField(**options)
|
||||
|
||||
Like :class:`BooleanField` with ``null=True``. Use that instead of this field
|
||||
as it's likely to be deprecated in a future version of Django.
|
||||
Like :class:`BooleanField` with ``null=True``.
|
||||
|
||||
.. deprecated:: 3.1
|
||||
|
||||
``NullBooleanField`` is deprecated in favor of ``BooleanField(null=True)``.
|
||||
|
||||
``PositiveBigIntegerField``
|
||||
---------------------------
|
||||
|
|
|
|||
|
|
@ -733,6 +733,9 @@ Miscellaneous
|
|||
same result can be achieved by passing aliases in a
|
||||
:class:`~django.db.models.expressions.RawSQL` instead beforehand.
|
||||
|
||||
* The ``NullBooleanField`` model field is deprecated in favor of
|
||||
``BooleanField(null=True)``.
|
||||
|
||||
.. _removed-features-3.1:
|
||||
|
||||
Features removed in 3.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue