Ticket #10693: parameter_list_fix.diff

File parameter_list_fix.diff, 1.5 KB (added by jos3ph, 15 years ago)
  • docs/howto/custom-model-fields.txt

     
    198198    * :attr:`~django.db.models.Field.blank`
    199199    * :attr:`~django.db.models.Field.null`
    200200    * :attr:`~django.db.models.Field.db_index`
    201     * :attr:`~django.db.models.Field.core`
    202201    * :attr:`~django.db.models.Field.rel`: Used for related fields (like
    203202      :class:`ForeignKey`). For advanced use only.
    204203    * :attr:`~django.db.models.Field.default`
     
    206205    * :attr:`~django.db.models.Field.serialize`: If ``False``, the field will
    207206      not be serialized when the model is passed to Django's :ref:`serializers
    208207      <topics-serialization>`. Defaults to ``True``.
    209     * :attr:`~django.db.models.Field.prepopulate_from`
    210208    * :attr:`~django.db.models.Field.unique_for_date`
    211209    * :attr:`~django.db.models.Field.unique_for_month`
    212210    * :attr:`~django.db.models.Field.unique_for_year`
     
    216214    * :attr:`~django.db.models.Field.db_tablespace`: Currently only used with
    217215      the Oracle backend and only for index creation. You can usually ignore
    218216      this option.
     217    * :attr:`~django.db.models.Field.auto_created`: Used with internal
     218      creation counter. For advanced use only.
    219219
    220220All of the options without an explanation in the above list have the same
    221221meaning they do for normal Django fields. See the :ref:`field documentation
Back to Top