Ticket #8530: field_options.patch
File field_options.patch, 678 bytes (added by , 16 years ago) |
---|
-
models.txt
147 147 If ``True``, Django will store empty values as ``NULL`` in the database. 148 148 Default is ``False``. 149 149 150 :attr:`~ ieldblank`150 :attr:`~Field.blank` 151 151 152 152 If ``True``, the field is allowed to be blank. Default is ``False``. 153 153 … … 187 187 form. It's useful for documentation even if your object doesn't have an 188 188 admin form. 189 189 190 :attr:`~Field.primary_key` `190 :attr:`~Field.primary_key` 191 191 192 192 If ``True``, this field is the primary key for the model. 193 193