Ticket #10693: parameter_list_fix.diff
File parameter_list_fix.diff, 1.5 KB (added by , 16 years ago) |
---|
-
docs/howto/custom-model-fields.txt
198 198 * :attr:`~django.db.models.Field.blank` 199 199 * :attr:`~django.db.models.Field.null` 200 200 * :attr:`~django.db.models.Field.db_index` 201 * :attr:`~django.db.models.Field.core`202 201 * :attr:`~django.db.models.Field.rel`: Used for related fields (like 203 202 :class:`ForeignKey`). For advanced use only. 204 203 * :attr:`~django.db.models.Field.default` … … 206 205 * :attr:`~django.db.models.Field.serialize`: If ``False``, the field will 207 206 not be serialized when the model is passed to Django's :ref:`serializers 208 207 <topics-serialization>`. Defaults to ``True``. 209 * :attr:`~django.db.models.Field.prepopulate_from`210 208 * :attr:`~django.db.models.Field.unique_for_date` 211 209 * :attr:`~django.db.models.Field.unique_for_month` 212 210 * :attr:`~django.db.models.Field.unique_for_year` … … 216 214 * :attr:`~django.db.models.Field.db_tablespace`: Currently only used with 217 215 the Oracle backend and only for index creation. You can usually ignore 218 216 this option. 217 * :attr:`~django.db.models.Field.auto_created`: Used with internal 218 creation counter. For advanced use only. 219 219 220 220 All of the options without an explanation in the above list have the same 221 221 meaning they do for normal Django fields. See the :ref:`field documentation