Skip to content

Commit

Permalink
Fixed #7609 -- Noted in the model fields reference documentation that…
Browse files Browse the repository at this point in the history
… `PositiveIntegerField` accepts the value 0 for backwards-compatibility reasons. Thanks to everyone involved in the resolution of this issue, including Paul Collins for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jphalip committed Oct 13, 2011
1 parent c58e572 commit 406f9d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/ref/models/fields.txt
Expand Up @@ -805,7 +805,8 @@ this as a ``<select>`` box with "Unknown", "Yes" and "No" choices.

.. class:: PositiveIntegerField([**options])

Like an :class:`IntegerField`, but must be positive.
Like an :class:`IntegerField`, but must be either positive or zero (`0`).
The value `0` is accepted for backward compatibility reasons.

``PositiveSmallIntegerField``
-----------------------------
Expand Down

0 comments on commit 406f9d1

Please sign in to comment.