2
0

options.txt 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 database tablespace to use for the model. If the backend
  51. doesn't support tablespaces, this option is ignored.
  52. ``get_latest_by``
  53. -----------------
  54. .. attribute:: Options.get_latest_by
  55. The name of a :class:`DateField` or :class:`DateTimeField` in the model.
  56. This specifies the default field to use in your model :class:`Manager`'s
  57. :class:`~QuerySet.latest` method.
  58. Example::
  59. get_latest_by = "order_date"
  60. See the docs for :meth:`~django.db.models.query.QuerySet.latest` for more.
  61. ``managed``
  62. -----------
  63. .. attribute:: Options.managed
  64. Defaults to ``True``, meaning Django will create the appropriate database
  65. tables in :djadmin:`syncdb` and remove them as part of a :djadmin:`reset`
  66. management command. That is, Django *manages* the database tables'
  67. lifecycles.
  68. If ``False``, no database table creation or deletion operations will be
  69. performed for this model. This is useful if the model represents an existing
  70. table or a database view that has been created by some other means. This is
  71. the *only* difference when ``managed=False``. All other aspects of
  72. model handling are exactly the same as normal. This includes
  73. 1. Adding an automatic primary key field to the model if you don't
  74. declare it. To avoid confusion for later code readers, it's
  75. recommended to specify all the columns from the database table you
  76. are modeling when using unmanaged models.
  77. 2. If a model with ``managed=False`` contains a
  78. :class:`~django.db.models.ManyToManyField` that points to another
  79. unmanaged model, then the intermediate table for the many-to-many
  80. join will also not be created. However, the intermediary table
  81. between one managed and one unmanaged model *will* be created.
  82. If you need to change this default behavior, create the intermediary
  83. table as an explicit model (with ``managed`` set as needed) and use
  84. the :attr:`ManyToManyField.through` attribute to make the relation
  85. use your custom model.
  86. For tests involving models with ``managed=False``, it's up to you to ensure
  87. the correct tables are created as part of the test setup.
  88. If you're interested in changing the Python-level behavior of a model class,
  89. you *could* use ``managed=False`` and create a copy of an existing model.
  90. However, there's a better approach for that situation: :ref:`proxy-models`.
  91. ``order_with_respect_to``
  92. -------------------------
  93. .. attribute:: Options.order_with_respect_to
  94. Marks this object as "orderable" with respect to the given field. This is almost
  95. always used with related objects to allow them to be ordered with respect to a
  96. parent object. For example, if an ``Answer`` relates to a ``Question`` object,
  97. and a question has more than one answer, and the order of answers matters, you'd
  98. do this::
  99. class Answer(models.Model):
  100. question = models.ForeignKey(Question)
  101. # ...
  102. class Meta:
  103. order_with_respect_to = 'question'
  104. When ``order_with_respect_to`` is set, two additional methods are provided to
  105. retrieve and to set the order of the related objects: ``get_RELATED_order()``
  106. and ``set_RELATED_order()``, where ``RELATED`` is the lowercased model name. For
  107. example, assuming that a ``Question`` object has multiple related ``Answer``
  108. objects, the list returned contains the primary keys of the related ``Answer``
  109. objects::
  110. >>> question = Question.objects.get(id=1)
  111. >>> question.get_answer_order()
  112. [1, 2, 3]
  113. The order of a ``Question`` object's related ``Answer`` objects can be set by
  114. passing in a list of ``Answer`` primary keys::
  115. >>> question.set_answer_order([3, 1, 2])
  116. The related objects also get two methods, ``get_next_in_order()`` and
  117. ``get_previous_in_order()``, which can be used to access those objects in their
  118. proper order. Assuming the ``Answer`` objects are ordered by ``id``::
  119. >>> answer = Answer.objects.get(id=2)
  120. >>> answer.get_next_in_order()
  121. <Answer: 3>
  122. >>> answer.get_previous_in_order()
  123. <Answer: 1>
  124. ``ordering``
  125. ------------
  126. .. attribute:: Options.ordering
  127. The default ordering for the object, for use when obtaining lists of objects::
  128. ordering = ['-order_date']
  129. This is a tuple or list of strings. Each string is a field name with an optional
  130. "-" prefix, which indicates descending order. Fields without a leading "-" will
  131. be ordered ascending. Use the string "?" to order randomly.
  132. .. note::
  133. Regardless of how many fields are in :attr:`~Options.ordering`, the admin
  134. site uses only the first field.
  135. For example, to order by a ``pub_date`` field ascending, use this::
  136. ordering = ['pub_date']
  137. To order by ``pub_date`` descending, use this::
  138. ordering = ['-pub_date']
  139. To order by ``pub_date`` descending, then by ``author`` ascending, use this::
  140. ordering = ['-pub_date', 'author']
  141. ``permissions``
  142. ---------------
  143. .. attribute:: Options.permissions
  144. Extra permissions to enter into the permissions table when creating this object.
  145. Add, delete and change permissions are automatically created for each object
  146. that has ``admin`` set. This example specifies an extra permission,
  147. ``can_deliver_pizzas``::
  148. permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)
  149. This is a list or tuple of 2-tuples in the format ``(permission_code,
  150. human_readable_permission_name)``.
  151. ``proxy``
  152. ---------
  153. .. attribute:: Options.proxy
  154. If ``proxy = True``, a model which subclasses another model will be treated as
  155. a :ref:`proxy model <proxy-models>`.
  156. ``unique_together``
  157. -------------------
  158. .. attribute:: Options.unique_together
  159. Sets of field names that, taken together, must be unique::
  160. unique_together = (("driver", "restaurant"),)
  161. This is a list of lists of fields that must be unique when considered together.
  162. It's used in the Django admin and is enforced at the database level (i.e., the
  163. appropriate ``UNIQUE`` statements are included in the ``CREATE TABLE``
  164. statement).
  165. For convenience, unique_together can be a single list when dealing with a single
  166. set of fields::
  167. unique_together = ("driver", "restaurant")
  168. ``verbose_name``
  169. ----------------
  170. .. attribute:: Options.verbose_name
  171. A human-readable name for the object, singular::
  172. verbose_name = "pizza"
  173. If this isn't given, Django will use a munged version of the class name:
  174. ``CamelCase`` becomes ``camel case``.
  175. ``verbose_name_plural``
  176. -----------------------
  177. .. attribute:: Options.verbose_name_plural
  178. The plural name for the object::
  179. verbose_name_plural = "stories"
  180. If this isn't given, Django will use :attr:`~Options.verbose_name` + ``"s"``.