options.txt 11 KB

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