Ticket #8530: field_options.patch

File field_options.patch, 678 bytes (added by Nicola Larosa, 16 years ago)
  • models.txt

     
    147147        If ``True``, Django will store empty values as ``NULL`` in the database.
    148148        Default is ``False``.
    149149
    150     :attr:`~ieldblank`
     150    :attr:`~Field.blank`
    151151
    152152        If ``True``, the field is allowed to be blank. Default is ``False``.
    153153   
     
    187187        form. It's useful for documentation even if your object doesn't have an
    188188        admin form.
    189189
    190     :attr:`~Field.primary_key``
     190    :attr:`~Field.primary_key`
    191191
    192192        If ``True``, this field is the primary key for the model.
    193193
Back to Top