options.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  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 is defined outside of an application in
  19. :setting:`INSTALLED_APPS`, it must declare which app it belongs to::
  20. app_label = "myapp"
  21. If you want to represent a model with the format ``app_label.object_name``
  22. or ``app_label.model_name`` you can use ``model._meta.label``
  23. or ``model._meta.label_lower`` respectively.
  24. ``base_manager_name``
  25. ---------------------
  26. .. attribute:: Options.base_manager_name
  27. The attribute name of the manager, for example, ``'objects'``, to use for
  28. the model's :attr:`~django.db.models.Model._base_manager`.
  29. ``db_table``
  30. ------------
  31. .. attribute:: Options.db_table
  32. The name of the database table to use for the model::
  33. db_table = "music_album"
  34. .. _table-names:
  35. Table names
  36. ~~~~~~~~~~~
  37. To save you time, Django automatically derives the name of the database table
  38. from the name of your model class and the app that contains it. A model's
  39. database table name is constructed by joining the model's "app label" -- the
  40. name you used in :djadmin:`manage.py startapp <startapp>` -- to the model's
  41. class name, with an underscore between them.
  42. For example, if you have an app ``bookstore`` (as created by
  43. ``manage.py startapp bookstore``), a model defined as ``class Book`` will have
  44. a database table named ``bookstore_book``.
  45. To override the database table name, use the ``db_table`` parameter in
  46. ``class Meta``.
  47. If your database table name is an SQL reserved word, or contains characters that
  48. aren't allowed in Python variable names -- notably, the hyphen -- that's OK.
  49. Django quotes column and table names behind the scenes.
  50. .. admonition:: Use lowercase table names for MariaDB and MySQL
  51. It is strongly advised that you use lowercase table names when you override
  52. the table name via ``db_table``, particularly if you are using the MySQL
  53. backend. See the :ref:`MySQL notes <mysql-notes>` for more details.
  54. .. admonition:: Table name quoting for Oracle
  55. In order to meet the 30-char limitation Oracle has on table names,
  56. and match the usual conventions for Oracle databases, Django may shorten
  57. table names and turn them all-uppercase. To prevent such transformations,
  58. use a quoted name as the value for ``db_table``::
  59. db_table = '"name_left_in_lowercase"'
  60. Such quoted names can also be used with Django's other supported database
  61. backends; except for Oracle, however, the quotes have no effect. See the
  62. :ref:`Oracle notes <oracle-notes>` for more details.
  63. ``db_table_comment``
  64. --------------------
  65. .. attribute:: Options.db_table_comment
  66. The comment on the database table to use for this model. It is useful for
  67. documenting database tables for individuals with direct database access who may
  68. not be looking at your Django code. For example::
  69. class Answer(models.Model):
  70. question = models.ForeignKey(Question, on_delete=models.CASCADE)
  71. answer = models.TextField()
  72. class Meta:
  73. db_table_comment = "Question answers"
  74. ``db_tablespace``
  75. -----------------
  76. .. attribute:: Options.db_tablespace
  77. The name of the :doc:`database tablespace </topics/db/tablespaces>` to use
  78. for this model. The default is the project's :setting:`DEFAULT_TABLESPACE`
  79. setting, if set. If the backend doesn't support tablespaces, this option is
  80. ignored.
  81. ``default_manager_name``
  82. ------------------------
  83. .. attribute:: Options.default_manager_name
  84. The name of the manager to use for the model's
  85. :attr:`~django.db.models.Model._default_manager`.
  86. ``default_related_name``
  87. ------------------------
  88. .. attribute:: Options.default_related_name
  89. The name that will be used by default for the relation from a related object
  90. back to this one. The default is ``<model_name>_set``.
  91. This option also sets :attr:`~ForeignKey.related_query_name`.
  92. As the reverse name for a field should be unique, be careful if you intend
  93. to subclass your model. To work around name collisions, part of the name
  94. should contain ``'%(app_label)s'`` and ``'%(model_name)s'``, which are
  95. replaced respectively by the name of the application the model is in,
  96. and the name of the model, both lowercased. See the paragraph on
  97. :ref:`related names for abstract models <abstract-related-name>`.
  98. ``get_latest_by``
  99. -----------------
  100. .. attribute:: Options.get_latest_by
  101. The name of a field or a list of field names in the model, typically
  102. :class:`DateField`, :class:`DateTimeField`, or :class:`IntegerField`. This
  103. specifies the default field(s) to use in your model :class:`Manager`’s
  104. :meth:`~django.db.models.query.QuerySet.latest` and
  105. :meth:`~django.db.models.query.QuerySet.earliest` methods.
  106. Example::
  107. # Latest by ascending order_date.
  108. get_latest_by = "order_date"
  109. # Latest by priority descending, order_date ascending.
  110. get_latest_by = ["-priority", "order_date"]
  111. See the :meth:`~django.db.models.query.QuerySet.latest` docs for more.
  112. ``managed``
  113. -----------
  114. .. attribute:: Options.managed
  115. Defaults to ``True``, meaning Django will create the appropriate database
  116. tables in :djadmin:`migrate` or as part of migrations and remove them as
  117. part of a :djadmin:`flush` management command. That is, Django
  118. *manages* the database tables' lifecycles.
  119. If ``False``, no database table creation, modification, or deletion
  120. operations will be performed for this model. This is useful if the model
  121. represents an existing table or a database view that has been created by
  122. some other means. This is the *only* difference when ``managed=False``. All
  123. other aspects of model handling are exactly the same as normal. This
  124. includes
  125. #. Adding an automatic primary key field to the model if you don't
  126. declare it. To avoid confusion for later code readers, it's
  127. recommended to specify all the columns from the database table you
  128. are modeling when using unmanaged models.
  129. #. If a model with ``managed=False`` contains a
  130. :class:`~django.db.models.ManyToManyField` that points to another
  131. unmanaged model, then the intermediate table for the many-to-many
  132. join will also not be created. However, the intermediary table
  133. between one managed and one unmanaged model *will* be created.
  134. If you need to change this default behavior, create the intermediary
  135. table as an explicit model (with ``managed`` set as needed) and use
  136. the :attr:`ManyToManyField.through` attribute to make the relation
  137. use your custom model.
  138. For tests involving models with ``managed=False``, it's up to you to ensure
  139. the correct tables are created as part of the test setup.
  140. If you're interested in changing the Python-level behavior of a model class,
  141. you *could* use ``managed=False`` and create a copy of an existing model.
  142. However, there's a better approach for that situation: :ref:`proxy-models`.
  143. ``order_with_respect_to``
  144. -------------------------
  145. .. attribute:: Options.order_with_respect_to
  146. Makes this object orderable with respect to the given field, usually a
  147. ``ForeignKey``. This can be used to make related objects orderable with
  148. respect to a parent object. For example, if an ``Answer`` relates to a
  149. ``Question`` object, and a question has more than one answer, and the order
  150. of answers matters, you'd do this::
  151. from django.db import models
  152. class Question(models.Model):
  153. text = models.TextField()
  154. # ...
  155. class Answer(models.Model):
  156. question = models.ForeignKey(Question, on_delete=models.CASCADE)
  157. # ...
  158. class Meta:
  159. order_with_respect_to = "question"
  160. When ``order_with_respect_to`` is set, two additional methods are provided to
  161. retrieve and to set the order of the related objects: ``get_RELATED_order()``
  162. and ``set_RELATED_order()``, where ``RELATED`` is the lowercased model name. For
  163. example, assuming that a ``Question`` object has multiple related ``Answer``
  164. objects, the list returned contains the primary keys of the related ``Answer``
  165. objects:
  166. .. code-block:: pycon
  167. >>> question = Question.objects.get(id=1)
  168. >>> question.get_answer_order()
  169. [1, 2, 3]
  170. The order of a ``Question`` object's related ``Answer`` objects can be set by
  171. passing in a list of ``Answer`` primary keys:
  172. .. code-block:: pycon
  173. >>> question.set_answer_order([3, 1, 2])
  174. The related objects also get two methods, ``get_next_in_order()`` and
  175. ``get_previous_in_order()``, which can be used to access those objects in their
  176. proper order. Assuming the ``Answer`` objects are ordered by ``id``:
  177. .. code-block:: pycon
  178. >>> answer = Answer.objects.get(id=2)
  179. >>> answer.get_next_in_order()
  180. <Answer: 3>
  181. >>> answer.get_previous_in_order()
  182. <Answer: 1>
  183. .. admonition:: ``order_with_respect_to`` implicitly sets the ``ordering`` option
  184. Internally, ``order_with_respect_to`` adds an additional field/database
  185. column named ``_order`` and sets the model's :attr:`~Options.ordering`
  186. option to this field. Consequently, ``order_with_respect_to`` and
  187. ``ordering`` cannot be used together, and the ordering added by
  188. ``order_with_respect_to`` will apply whenever you obtain a list of objects
  189. of this model.
  190. .. admonition:: Changing ``order_with_respect_to``
  191. Because ``order_with_respect_to`` adds a new database column, be sure to
  192. make and apply the appropriate migrations if you add or change
  193. ``order_with_respect_to`` after your initial :djadmin:`migrate`.
  194. ``ordering``
  195. ------------
  196. .. attribute:: Options.ordering
  197. The default ordering for the object, for use when obtaining lists of objects::
  198. ordering = ["-order_date"]
  199. This is a tuple or list of strings and/or query expressions. Each string is
  200. a field name with an optional "-" prefix, which indicates descending order.
  201. Fields without a leading "-" will be ordered ascending. Use the string "?"
  202. to order randomly.
  203. For example, to order by a ``pub_date`` field ascending, use this::
  204. ordering = ["pub_date"]
  205. To order by ``pub_date`` descending, use this::
  206. ordering = ["-pub_date"]
  207. To order by ``pub_date`` descending, then by ``author`` ascending, use this::
  208. ordering = ["-pub_date", "author"]
  209. You can also use :doc:`query expressions </ref/models/expressions>`. To
  210. order by ``author`` ascending and make null values sort last, use this::
  211. from django.db.models import F
  212. ordering = [F("author").asc(nulls_last=True)]
  213. .. warning::
  214. Ordering is not a free operation. Each field you add to the ordering
  215. incurs a cost to your database. Each foreign key you add will
  216. implicitly include all of its default orderings as well.
  217. If a query doesn't have an ordering specified, results are returned from
  218. the database in an unspecified order. A particular ordering is guaranteed
  219. only when ordering by a set of fields that uniquely identify each object in
  220. the results. For example, if a ``name`` field isn't unique, ordering by it
  221. won't guarantee objects with the same name always appear in the same order.
  222. ``permissions``
  223. ---------------
  224. .. attribute:: Options.permissions
  225. Extra permissions to enter into the permissions table when creating this object.
  226. Add, change, delete, and view permissions are automatically created for each
  227. model. This example specifies an extra permission, ``can_deliver_pizzas``::
  228. permissions = [("can_deliver_pizzas", "Can deliver pizzas")]
  229. This is a list or tuple of 2-tuples in the format ``(permission_code,
  230. human_readable_permission_name)``.
  231. ``default_permissions``
  232. -----------------------
  233. .. attribute:: Options.default_permissions
  234. Defaults to ``('add', 'change', 'delete', 'view')``. You may customize this
  235. list, for example, by setting this to an empty list if your app doesn't
  236. require any of the default permissions. It must be specified on the model
  237. before the model is created by :djadmin:`migrate` in order to prevent any
  238. omitted permissions from being created.
  239. ``proxy``
  240. ---------
  241. .. attribute:: Options.proxy
  242. If ``proxy = True``, a model which subclasses another model will be treated as
  243. a :ref:`proxy model <proxy-models>`.
  244. ``required_db_features``
  245. ------------------------
  246. .. attribute:: Options.required_db_features
  247. List of database features that the current connection should have so that
  248. the model is considered during the migration phase. For example, if you set
  249. this list to ``['gis_enabled']``, the model will only be synchronized on
  250. GIS-enabled databases. It's also useful to skip some models when testing
  251. with several database backends. Avoid relations between models that may or
  252. may not be created as the ORM doesn't handle this.
  253. ``required_db_vendor``
  254. ----------------------
  255. .. attribute:: Options.required_db_vendor
  256. Name of a supported database vendor that this model is specific to. Current
  257. built-in vendor names are: ``sqlite``, ``postgresql``, ``mysql``,
  258. ``oracle``. If this attribute is not empty and the current connection vendor
  259. doesn't match it, the model will not be synchronized.
  260. ``select_on_save``
  261. ------------------
  262. .. attribute:: Options.select_on_save
  263. Determines if Django will use the pre-1.6
  264. :meth:`django.db.models.Model.save()` algorithm. The old algorithm
  265. uses ``SELECT`` to determine if there is an existing row to be updated.
  266. The new algorithm tries an ``UPDATE`` directly. In some rare cases the
  267. ``UPDATE`` of an existing row isn't visible to Django. An example is the
  268. PostgreSQL ``ON UPDATE`` trigger which returns ``NULL``. In such cases the
  269. new algorithm will end up doing an ``INSERT`` even when a row exists in
  270. the database.
  271. Usually there is no need to set this attribute. The default is
  272. ``False``.
  273. See :meth:`django.db.models.Model.save()` for more about the old and
  274. new saving algorithm.
  275. ``indexes``
  276. -----------
  277. .. attribute:: Options.indexes
  278. A list of :doc:`indexes </ref/models/indexes>` that you want to define on
  279. the model::
  280. from django.db import models
  281. class Customer(models.Model):
  282. first_name = models.CharField(max_length=100)
  283. last_name = models.CharField(max_length=100)
  284. class Meta:
  285. indexes = [
  286. models.Index(fields=["last_name", "first_name"]),
  287. models.Index(fields=["first_name"], name="first_name_idx"),
  288. ]
  289. ``unique_together``
  290. -------------------
  291. .. attribute:: Options.unique_together
  292. .. admonition:: Use :class:`.UniqueConstraint` with the :attr:`~Options.constraints` option instead.
  293. :class:`.UniqueConstraint` provides more functionality than
  294. ``unique_together``. ``unique_together`` may be deprecated in the
  295. future.
  296. Sets of field names that, taken together, must be unique::
  297. unique_together = [["driver", "restaurant"]]
  298. This is a list of lists that must be unique when considered together.
  299. It's used in the Django admin and is enforced at the database level (i.e., the
  300. appropriate ``UNIQUE`` statements are included in the ``CREATE TABLE``
  301. statement).
  302. For convenience, ``unique_together`` can be a single list when dealing with
  303. a single set of fields::
  304. unique_together = ["driver", "restaurant"]
  305. A :class:`~django.db.models.ManyToManyField` cannot be included in
  306. ``unique_together``. (It's not clear what that would even mean!) If you
  307. need to validate uniqueness related to a
  308. :class:`~django.db.models.ManyToManyField`, try using a signal or
  309. an explicit :attr:`through <ManyToManyField.through>` model.
  310. The ``ValidationError`` raised during model validation when the constraint
  311. is violated has the ``unique_together`` error code.
  312. ``constraints``
  313. ---------------
  314. .. attribute:: Options.constraints
  315. A list of :doc:`constraints </ref/models/constraints>` that you want to
  316. define on the model::
  317. from django.db import models
  318. class Customer(models.Model):
  319. age = models.IntegerField()
  320. class Meta:
  321. constraints = [
  322. models.CheckConstraint(condition=models.Q(age__gte=18), name="age_gte_18"),
  323. ]
  324. ``verbose_name``
  325. ----------------
  326. .. attribute:: Options.verbose_name
  327. A human-readable name for the object, singular::
  328. verbose_name = "pizza"
  329. If this isn't given, Django will use a munged version of the class name:
  330. ``CamelCase`` becomes ``camel case``.
  331. ``verbose_name_plural``
  332. -----------------------
  333. .. attribute:: Options.verbose_name_plural
  334. The plural name for the object::
  335. verbose_name_plural = "stories"
  336. If this isn't given, Django will use :attr:`~Options.verbose_name` + ``"s"``.
  337. Read-only ``Meta`` attributes
  338. =============================
  339. ``label``
  340. ---------
  341. .. attribute:: Options.label
  342. Representation of the object, returns ``app_label.object_name``, e.g.
  343. ``'polls.Question'``.
  344. ``label_lower``
  345. ---------------
  346. .. attribute:: Options.label_lower
  347. Representation of the model, returns ``app_label.model_name``, e.g.
  348. ``'polls.question'``.