options.txt 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. ======================
  2. Model ``Meta`` options
  3. ======================
  4. This document explains all the possible :ref:`metadata options
  5. <meta-options>` that you can give your model in its internal
  6. ``class Meta``.
  7. Available ``Meta`` options
  8. ==========================
  9. .. currentmodule:: django.db.models
  10. ``abstract``
  11. ------------
  12. .. attribute:: Options.abstract
  13. If ``abstract = True``, this model will be an
  14. :ref:`abstract base class <abstract-base-classes>`.
  15. ``app_label``
  16. -------------
  17. .. attribute:: Options.app_label
  18. If a model exists outside of the standard :file:`models.py` (for instance,
  19. if the app's models are in submodules of ``myapp.models``), the model must
  20. define which app it is part of::
  21. app_label = 'myapp'
  22. ``db_table``
  23. ------------
  24. .. attribute:: Options.db_table
  25. The name of the database table to use for the model::
  26. db_table = 'music_album'
  27. .. _table-names:
  28. Table names
  29. ~~~~~~~~~~~
  30. To save you time, Django automatically derives the name of the database table
  31. from the name of your model class and the app that contains it. A model's
  32. database table name is constructed by joining the model's "app label" -- the
  33. name you used in :djadmin:`manage.py startapp <startapp>` -- to the model's
  34. class name, with an underscore between them.
  35. For example, if you have an app ``bookstore`` (as created by
  36. ``manage.py startapp bookstore``), a model defined as ``class Book`` will have
  37. a database table named ``bookstore_book``.
  38. To override the database table name, use the ``db_table`` parameter in
  39. ``class Meta``.
  40. If your database table name is an SQL reserved word, or contains characters that
  41. aren't allowed in Python variable names -- notably, the hyphen -- that's OK.
  42. Django quotes column and table names behind the scenes.
  43. .. admonition:: Use lowercase table names for MySQL
  44. It is strongly advised that you use lowercase table names when you override
  45. the table name via ``db_table``, particularly if you are using the MySQL
  46. backend. See the :ref:`MySQL notes <mysql-notes>` for more details.
  47. ``db_tablespace``
  48. -----------------
  49. .. attribute:: Options.db_tablespace
  50. The name of the :doc:`database tablespace </topics/db/tablespaces>` to use
  51. for this model. The default is the project's :setting:`DEFAULT_TABLESPACE`
  52. setting, if set. If the backend doesn't support tablespaces, this option is
  53. ignored.
  54. ``get_latest_by``
  55. -----------------
  56. .. attribute:: Options.get_latest_by
  57. The name of a :class:`DateField` or :class:`DateTimeField` in the model.
  58. This specifies the default field to use in your model :class:`Manager`'s
  59. :class:`~QuerySet.latest` method.
  60. Example::
  61. get_latest_by = "order_date"
  62. See the docs for :meth:`~django.db.models.query.QuerySet.latest` for more.
  63. ``managed``
  64. -----------
  65. .. attribute:: Options.managed
  66. Defaults to ``True``, meaning Django will create the appropriate database
  67. tables in :djadmin:`syncdb` and remove them as part of a :djadmin:`reset`
  68. management command. That is, Django *manages* the database tables'
  69. lifecycles.
  70. If ``False``, no database table creation or deletion operations will be
  71. performed for this model. This is useful if the model represents an existing
  72. table or a database view that has been created by some other means. This is
  73. the *only* difference when ``managed=False``. All other aspects of
  74. model handling are exactly the same as normal. This includes
  75. 1. Adding an automatic primary key field to the model if you don't
  76. declare it. To avoid confusion for later code readers, it's
  77. recommended to specify all the columns from the database table you
  78. are modeling when using unmanaged models.
  79. 2. If a model with ``managed=False`` contains a
  80. :class:`~django.db.models.ManyToManyField` that points to another
  81. unmanaged model, then the intermediate table for the many-to-many
  82. join will also not be created. However, the intermediary table
  83. between one managed and one unmanaged model *will* be created.
  84. If you need to change this default behavior, create the intermediary
  85. table as an explicit model (with ``managed`` set as needed) and use
  86. the :attr:`ManyToManyField.through` attribute to make the relation
  87. use your custom model.
  88. For tests involving models with ``managed=False``, it's up to you to ensure
  89. the correct tables are created as part of the test setup.
  90. If you're interested in changing the Python-level behavior of a model class,
  91. you *could* use ``managed=False`` and create a copy of an existing model.
  92. However, there's a better approach for that situation: :ref:`proxy-models`.
  93. ``order_with_respect_to``
  94. -------------------------
  95. .. attribute:: Options.order_with_respect_to
  96. Marks this object as "orderable" with respect to the given field. This is almost
  97. always used with related objects to allow them to be ordered with respect to a
  98. parent object. For example, if an ``Answer`` relates to a ``Question`` object,
  99. and a question has more than one answer, and the order of answers matters, you'd
  100. do this::
  101. class Answer(models.Model):
  102. question = models.ForeignKey(Question)
  103. # ...
  104. class Meta:
  105. order_with_respect_to = 'question'
  106. When ``order_with_respect_to`` is set, two additional methods are provided to
  107. retrieve and to set the order of the related objects: ``get_RELATED_order()``
  108. and ``set_RELATED_order()``, where ``RELATED`` is the lowercased model name. For
  109. example, assuming that a ``Question`` object has multiple related ``Answer``
  110. objects, the list returned contains the primary keys of the related ``Answer``
  111. objects::
  112. >>> question = Question.objects.get(id=1)
  113. >>> question.get_answer_order()
  114. [1, 2, 3]
  115. The order of a ``Question`` object's related ``Answer`` objects can be set by
  116. passing in a list of ``Answer`` primary keys::
  117. >>> question.set_answer_order([3, 1, 2])
  118. The related objects also get two methods, ``get_next_in_order()`` and
  119. ``get_previous_in_order()``, which can be used to access those objects in their
  120. proper order. Assuming the ``Answer`` objects are ordered by ``id``::
  121. >>> answer = Answer.objects.get(id=2)
  122. >>> answer.get_next_in_order()
  123. <Answer: 3>
  124. >>> answer.get_previous_in_order()
  125. <Answer: 1>
  126. ``ordering``
  127. ------------
  128. .. attribute:: Options.ordering
  129. The default ordering for the object, for use when obtaining lists of objects::
  130. ordering = ['-order_date']
  131. This is a tuple or list of strings. Each string is a field name with an optional
  132. "-" prefix, which indicates descending order. Fields without a leading "-" will
  133. be ordered ascending. Use the string "?" to order randomly.
  134. .. note::
  135. Regardless of how many fields are in :attr:`~Options.ordering`, the admin
  136. site uses only the first field.
  137. For example, to order by a ``pub_date`` field ascending, use this::
  138. ordering = ['pub_date']
  139. To order by ``pub_date`` descending, use this::
  140. ordering = ['-pub_date']
  141. To order by ``pub_date`` descending, then by ``author`` ascending, use this::
  142. ordering = ['-pub_date', 'author']
  143. ``permissions``
  144. ---------------
  145. .. attribute:: Options.permissions
  146. Extra permissions to enter into the permissions table when creating this object.
  147. Add, delete and change permissions are automatically created for each object
  148. that has ``admin`` set. This example specifies an extra permission,
  149. ``can_deliver_pizzas``::
  150. permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)
  151. This is a list or tuple of 2-tuples in the format ``(permission_code,
  152. human_readable_permission_name)``.
  153. ``proxy``
  154. ---------
  155. .. attribute:: Options.proxy
  156. If ``proxy = True``, a model which subclasses another model will be treated as
  157. a :ref:`proxy model <proxy-models>`.
  158. ``unique_together``
  159. -------------------
  160. .. attribute:: Options.unique_together
  161. Sets of field names that, taken together, must be unique::
  162. unique_together = (("driver", "restaurant"),)
  163. This is a list of lists of fields that must be unique when considered together.
  164. It's used in the Django admin and is enforced at the database level (i.e., the
  165. appropriate ``UNIQUE`` statements are included in the ``CREATE TABLE``
  166. statement).
  167. For convenience, unique_together can be a single list when dealing with a single
  168. set of fields::
  169. unique_together = ("driver", "restaurant")
  170. ``verbose_name``
  171. ----------------
  172. .. attribute:: Options.verbose_name
  173. A human-readable name for the object, singular::
  174. verbose_name = "pizza"
  175. If this isn't given, Django will use a munged version of the class name:
  176. ``CamelCase`` becomes ``camel case``.
  177. ``verbose_name_plural``
  178. -----------------------
  179. .. attribute:: Options.verbose_name_plural
  180. The plural name for the object::
  181. verbose_name_plural = "stories"
  182. If this isn't given, Django will use :attr:`~Options.verbose_name` + ``"s"``.