Ticket #7609: doc_patch.diff

File doc_patch.diff, 600 bytes (added by Paul Collins, 13 years ago)

Update per comment 15

  • docs/ref/models/fields.txt

    diff --git docs/ref/models/fields.txt docs/ref/models/fields.txt
    index cc89142..f4f9e6e 100644
    this as a ``<select>`` box with "Unknown", "Yes" and "No" choices.  
    805805
    806806.. class:: PositiveIntegerField([**options])
    807807
    808 Like an :class:`IntegerField`, but must be positive.
     808Like an :class:`IntegerField`, but must be positive. Also accepts 0 for backward
     809compatibility reasons (see ticket
     810`#7609 <https://code.djangoproject.com/ticket/7609>`_ for details).
    809811
    810812``PositiveSmallIntegerField``
    811813-----------------------------
Back to Top