2008-08-24 06:25:40 +08:00
|
|
|
|
======================
|
|
|
|
|
Model ``Meta`` options
|
|
|
|
|
======================
|
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
|
This document explains all the possible :ref:`metadata options
|
2010-12-30 04:30:24 +08:00
|
|
|
|
<meta-options>` that you can give your model in its internal
|
|
|
|
|
``class Meta``.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
|
|
Available ``Meta`` options
|
|
|
|
|
==========================
|
|
|
|
|
|
|
|
|
|
.. currentmodule:: django.db.models
|
|
|
|
|
|
2008-08-31 18:13:32 +08:00
|
|
|
|
``abstract``
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.abstract
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If ``abstract = True``, this model will be an
|
|
|
|
|
:ref:`abstract base class <abstract-base-classes>`.
|
2008-08-31 18:13:32 +08:00
|
|
|
|
|
2009-09-29 05:58:21 +08:00
|
|
|
|
``app_label``
|
|
|
|
|
-------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.app_label
|
|
|
|
|
|
2013-07-17 01:21:17 +08:00
|
|
|
|
If a model exists outside of the standard locations (:file:`models.py` or
|
|
|
|
|
a ``models`` package in an app), the model must define which app it is part
|
|
|
|
|
of::
|
2009-09-29 05:58:21 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
app_label = 'myapp'
|
2009-09-29 05:58:21 +08:00
|
|
|
|
|
2013-07-17 01:21:17 +08:00
|
|
|
|
.. versionadded:: 1.7
|
|
|
|
|
|
|
|
|
|
``app_label`` is no longer required for models that are defined
|
2014-01-02 02:44:39 +08:00
|
|
|
|
outside the ``models`` module of an application.
|
2013-07-17 01:21:17 +08:00
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``db_table``
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.db_table
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
The name of the database table to use for the model::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
db_table = 'music_album'
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
|
|
.. _table-names:
|
|
|
|
|
|
|
|
|
|
Table names
|
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
To save you time, Django automatically derives the name of the database table
|
|
|
|
|
from the name of your model class and the app that contains it. A model's
|
|
|
|
|
database table name is constructed by joining the model's "app label" -- the
|
2010-12-30 04:30:24 +08:00
|
|
|
|
name you used in :djadmin:`manage.py startapp <startapp>` -- to the model's
|
|
|
|
|
class name, with an underscore between them.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
|
|
For example, if you have an app ``bookstore`` (as created by
|
|
|
|
|
``manage.py startapp bookstore``), a model defined as ``class Book`` will have
|
|
|
|
|
a database table named ``bookstore_book``.
|
|
|
|
|
|
|
|
|
|
To override the database table name, use the ``db_table`` parameter in
|
|
|
|
|
``class Meta``.
|
|
|
|
|
|
|
|
|
|
If your database table name is an SQL reserved word, or contains characters that
|
|
|
|
|
aren't allowed in Python variable names -- notably, the hyphen -- that's OK.
|
|
|
|
|
Django quotes column and table names behind the scenes.
|
|
|
|
|
|
2011-09-11 04:06:10 +08:00
|
|
|
|
.. admonition:: Use lowercase table names for MySQL
|
|
|
|
|
|
|
|
|
|
It is strongly advised that you use lowercase table names when you override
|
|
|
|
|
the table name via ``db_table``, particularly if you are using the MySQL
|
|
|
|
|
backend. See the :ref:`MySQL notes <mysql-notes>` for more details.
|
|
|
|
|
|
2013-10-21 23:12:48 +08:00
|
|
|
|
.. admonition:: Table name quoting for Oracle
|
|
|
|
|
|
2014-02-10 03:30:13 +08:00
|
|
|
|
In order to meet the 30-char limitation Oracle has on table names,
|
2013-10-21 23:12:48 +08:00
|
|
|
|
and match the usual conventions for Oracle databases, Django may shorten
|
|
|
|
|
table names and turn them all-uppercase. To prevent such transformations,
|
|
|
|
|
use a quoted name as the value for ``db_table``::
|
|
|
|
|
|
|
|
|
|
db_table = '"name_left_in_lowercase"'
|
|
|
|
|
|
2014-01-02 02:44:39 +08:00
|
|
|
|
Such quoted names can also be used with Django's other supported database
|
2013-10-21 23:12:48 +08:00
|
|
|
|
backends; except for Oracle, however, the quotes have no effect. See the
|
|
|
|
|
:ref:`Oracle notes <oracle-notes>` for more details.
|
2011-09-11 04:06:10 +08:00
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``db_tablespace``
|
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.db_tablespace
|
|
|
|
|
|
2011-10-15 05:49:43 +08:00
|
|
|
|
The name of the :doc:`database tablespace </topics/db/tablespaces>` to use
|
|
|
|
|
for this model. The default is the project's :setting:`DEFAULT_TABLESPACE`
|
|
|
|
|
setting, if set. If the backend doesn't support tablespaces, this option is
|
|
|
|
|
ignored.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2014-06-07 00:16:17 +08:00
|
|
|
|
``default_related_name``
|
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.default_related_name
|
|
|
|
|
|
2014-12-29 17:21:48 +08:00
|
|
|
|
.. versionadded:: 1.8
|
2014-06-07 00:16:17 +08:00
|
|
|
|
|
|
|
|
|
The name that will be used by default for the relation from a related object
|
|
|
|
|
back to this one. The default is ``<model_name>_set``.
|
|
|
|
|
|
|
|
|
|
As the reverse name for a field should be unique, be careful if you intend
|
|
|
|
|
to subclass your model. To work around name collisions, part of the name
|
|
|
|
|
should contain ``'%(app_label)s'`` and ``'%(model_name)s'``, which are
|
|
|
|
|
replaced respectively by the name of the application the model is in,
|
|
|
|
|
and the name of the model, both lowercased. See the paragraph on
|
|
|
|
|
:ref:`related names for abstract models <abstract-related-name>`.
|
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``get_latest_by``
|
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.get_latest_by
|
|
|
|
|
|
2012-09-07 23:34:15 +08:00
|
|
|
|
The name of an orderable field in the model, typically a :class:`DateField`,
|
|
|
|
|
:class:`DateTimeField`, or :class:`IntegerField`. This specifies the default
|
2013-08-06 00:23:26 +08:00
|
|
|
|
field to use in your model :class:`Manager`’s
|
2013-01-12 16:37:19 +08:00
|
|
|
|
:meth:`~django.db.models.query.QuerySet.latest` and
|
|
|
|
|
:meth:`~django.db.models.query.QuerySet.earliest` methods.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
Example::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
get_latest_by = "order_date"
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2012-12-25 16:40:08 +08:00
|
|
|
|
See the :meth:`~django.db.models.query.QuerySet.latest` docs for more.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2009-03-09 11:35:02 +08:00
|
|
|
|
``managed``
|
2010-12-30 04:30:24 +08:00
|
|
|
|
-----------
|
2009-03-09 11:35:02 +08:00
|
|
|
|
|
|
|
|
|
.. attribute:: Options.managed
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
Defaults to ``True``, meaning Django will create the appropriate database
|
2013-07-25 23:19:36 +08:00
|
|
|
|
tables in :djadmin:`migrate` or as part of migrations and remove them as
|
|
|
|
|
part of a :djadmin:`flush` management command. That is, Django
|
|
|
|
|
*manages* the database tables' lifecycles.
|
2009-03-21 07:15:27 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If ``False``, no database table creation or deletion operations will be
|
|
|
|
|
performed for this model. This is useful if the model represents an existing
|
|
|
|
|
table or a database view that has been created by some other means. This is
|
|
|
|
|
the *only* difference when ``managed=False``. All other aspects of
|
|
|
|
|
model handling are exactly the same as normal. This includes
|
2009-03-09 11:35:02 +08:00
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
|
1. Adding an automatic primary key field to the model if you don't
|
|
|
|
|
declare it. To avoid confusion for later code readers, it's
|
|
|
|
|
recommended to specify all the columns from the database table you
|
|
|
|
|
are modeling when using unmanaged models.
|
|
|
|
|
|
|
|
|
|
2. If a model with ``managed=False`` contains a
|
|
|
|
|
:class:`~django.db.models.ManyToManyField` that points to another
|
|
|
|
|
unmanaged model, then the intermediate table for the many-to-many
|
|
|
|
|
join will also not be created. However, the intermediary table
|
|
|
|
|
between one managed and one unmanaged model *will* be created.
|
|
|
|
|
|
|
|
|
|
If you need to change this default behavior, create the intermediary
|
|
|
|
|
table as an explicit model (with ``managed`` set as needed) and use
|
|
|
|
|
the :attr:`ManyToManyField.through` attribute to make the relation
|
|
|
|
|
use your custom model.
|
2009-03-09 11:35:02 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
For tests involving models with ``managed=False``, it's up to you to ensure
|
|
|
|
|
the correct tables are created as part of the test setup.
|
2009-03-09 11:35:02 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If you're interested in changing the Python-level behavior of a model class,
|
|
|
|
|
you *could* use ``managed=False`` and create a copy of an existing model.
|
|
|
|
|
However, there's a better approach for that situation: :ref:`proxy-models`.
|
2009-03-19 17:04:19 +08:00
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``order_with_respect_to``
|
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.order_with_respect_to
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
Marks this object as "orderable" with respect to the given field. This is almost
|
|
|
|
|
always used with related objects to allow them to be ordered with respect to a
|
|
|
|
|
parent object. For example, if an ``Answer`` relates to a ``Question`` object,
|
|
|
|
|
and a question has more than one answer, and the order of answers matters, you'd
|
|
|
|
|
do this::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2013-05-18 18:12:26 +08:00
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
|
|
class Question(models.Model):
|
|
|
|
|
text = models.TextField()
|
|
|
|
|
# ...
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
class Answer(models.Model):
|
|
|
|
|
question = models.ForeignKey(Question)
|
|
|
|
|
# ...
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
class Meta:
|
|
|
|
|
order_with_respect_to = 'question'
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
When ``order_with_respect_to`` is set, two additional methods are provided to
|
|
|
|
|
retrieve and to set the order of the related objects: ``get_RELATED_order()``
|
|
|
|
|
and ``set_RELATED_order()``, where ``RELATED`` is the lowercased model name. For
|
|
|
|
|
example, assuming that a ``Question`` object has multiple related ``Answer``
|
|
|
|
|
objects, the list returned contains the primary keys of the related ``Answer``
|
|
|
|
|
objects::
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
>>> question = Question.objects.get(id=1)
|
|
|
|
|
>>> question.get_answer_order()
|
|
|
|
|
[1, 2, 3]
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
The order of a ``Question`` object's related ``Answer`` objects can be set by
|
|
|
|
|
passing in a list of ``Answer`` primary keys::
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
>>> question.set_answer_order([3, 1, 2])
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
The related objects also get two methods, ``get_next_in_order()`` and
|
|
|
|
|
``get_previous_in_order()``, which can be used to access those objects in their
|
|
|
|
|
proper order. Assuming the ``Answer`` objects are ordered by ``id``::
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
>>> answer = Answer.objects.get(id=2)
|
|
|
|
|
>>> answer.get_next_in_order()
|
|
|
|
|
<Answer: 3>
|
|
|
|
|
>>> answer.get_previous_in_order()
|
|
|
|
|
<Answer: 1>
|
2010-12-07 07:08:44 +08:00
|
|
|
|
|
2011-12-31 23:30:22 +08:00
|
|
|
|
.. admonition:: Changing order_with_respect_to
|
|
|
|
|
|
|
|
|
|
``order_with_respect_to`` adds an additional field/database column
|
2013-08-31 09:05:36 +08:00
|
|
|
|
named ``_order``, so be sure to make and apply the appropriate
|
2013-07-25 23:19:36 +08:00
|
|
|
|
migrations if you add or change ``order_with_respect_to``
|
|
|
|
|
after your initial :djadmin:`migrate`.
|
2011-12-31 23:30:22 +08:00
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``ordering``
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.ordering
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
The default ordering for the object, for use when obtaining lists of objects::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
ordering = ['-order_date']
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
This is a tuple or list of strings. Each string is a field name with an optional
|
|
|
|
|
"-" prefix, which indicates descending order. Fields without a leading "-" will
|
|
|
|
|
be ordered ascending. Use the string "?" to order randomly.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
For example, to order by a ``pub_date`` field ascending, use this::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
ordering = ['pub_date']
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
To order by ``pub_date`` descending, use this::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
ordering = ['-pub_date']
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
To order by ``pub_date`` descending, then by ``author`` ascending, use this::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
ordering = ['-pub_date', 'author']
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2013-09-09 03:57:36 +08:00
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
|
|
Ordering is not a free operation. Each field you add to the ordering
|
|
|
|
|
incurs a cost to your database. Each foreign key you add will
|
2013-09-09 23:30:31 +08:00
|
|
|
|
implicitly include all of its default orderings as well.
|
2013-09-09 03:57:36 +08:00
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``permissions``
|
|
|
|
|
---------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.permissions
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
Extra permissions to enter into the permissions table when creating this object.
|
2013-08-01 22:27:30 +08:00
|
|
|
|
Add, delete and change permissions are automatically created for each
|
|
|
|
|
model. This example specifies an extra permission, ``can_deliver_pizzas``::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
This is a list or tuple of 2-tuples in the format ``(permission_code,
|
|
|
|
|
human_readable_permission_name)``.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2013-08-01 23:31:34 +08:00
|
|
|
|
``default_permissions``
|
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.default_permissions
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.7
|
|
|
|
|
|
|
|
|
|
Defaults to ``('add', 'change', 'delete')``. You may customize this list,
|
|
|
|
|
for example, by setting this to an empty list if your app doesn't require
|
|
|
|
|
any of the default permissions. It must be specified on the model before
|
2013-11-21 22:04:31 +08:00
|
|
|
|
the model is created by :djadmin:`migrate` in order to prevent any omitted
|
2013-08-01 23:31:34 +08:00
|
|
|
|
permissions from being created.
|
|
|
|
|
|
2009-03-18 17:47:08 +08:00
|
|
|
|
``proxy``
|
|
|
|
|
---------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.proxy
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If ``proxy = True``, a model which subclasses another model will be treated as
|
|
|
|
|
a :ref:`proxy model <proxy-models>`.
|
2009-03-18 17:47:08 +08:00
|
|
|
|
|
2013-08-30 14:41:07 +08:00
|
|
|
|
``select_on_save``
|
|
|
|
|
------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.select_on_save
|
|
|
|
|
|
|
|
|
|
Determines if Django will use the pre-1.6
|
|
|
|
|
:meth:`django.db.models.Model.save()` algorithm. The old algorithm
|
|
|
|
|
uses ``SELECT`` to determine if there is an existing row to be updated.
|
2013-08-31 09:05:36 +08:00
|
|
|
|
The new algorithm tries an ``UPDATE`` directly. In some rare cases the
|
2013-08-30 14:41:07 +08:00
|
|
|
|
``UPDATE`` of an existing row isn't visible to Django. An example is the
|
|
|
|
|
PostgreSQL ``ON UPDATE`` trigger which returns ``NULL``. In such cases the
|
|
|
|
|
new algorithm will end up doing an ``INSERT`` even when a row exists in
|
|
|
|
|
the database.
|
|
|
|
|
|
|
|
|
|
Usually there is no need to set this attribute. The default is
|
|
|
|
|
``False``.
|
|
|
|
|
|
|
|
|
|
See :meth:`django.db.models.Model.save()` for more about the old and
|
|
|
|
|
new saving algorithm.
|
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``unique_together``
|
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.unique_together
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
Sets of field names that, taken together, must be unique::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
unique_together = (("driver", "restaurant"),)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2012-06-07 19:46:06 +08:00
|
|
|
|
This is a tuple of tuples that must be unique when considered together.
|
2010-12-30 04:30:24 +08:00
|
|
|
|
It's used in the Django admin and is enforced at the database level (i.e., the
|
|
|
|
|
appropriate ``UNIQUE`` statements are included in the ``CREATE TABLE``
|
|
|
|
|
statement).
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2012-06-07 19:46:06 +08:00
|
|
|
|
For convenience, unique_together can be a single tuple when dealing with a single
|
2010-12-30 04:30:24 +08:00
|
|
|
|
set of fields::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
unique_together = ("driver", "restaurant")
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2011-12-31 08:43:11 +08:00
|
|
|
|
A :class:`~django.db.models.ManyToManyField` cannot be included in
|
2012-02-04 01:45:28 +08:00
|
|
|
|
unique_together. (It's not clear what that would even mean!) If you
|
2011-12-31 08:43:11 +08:00
|
|
|
|
need to validate uniqueness related to a
|
2012-02-04 01:45:28 +08:00
|
|
|
|
:class:`~django.db.models.ManyToManyField`, try using a signal or
|
|
|
|
|
an explicit :attr:`through <ManyToManyField.through>` model.
|
2011-12-31 08:43:11 +08:00
|
|
|
|
|
2014-02-04 02:31:27 +08:00
|
|
|
|
.. versionchanged:: 1.7
|
|
|
|
|
|
2014-11-03 18:30:48 +08:00
|
|
|
|
The ``ValidationError`` raised during model validation when the
|
|
|
|
|
constraint is violated has the ``unique_together`` error code.
|
2014-02-04 02:31:27 +08:00
|
|
|
|
|
2012-11-05 02:16:06 +08:00
|
|
|
|
``index_together``
|
2013-03-15 22:15:52 +08:00
|
|
|
|
------------------
|
2012-11-05 02:16:06 +08:00
|
|
|
|
|
|
|
|
|
.. attribute:: Options.index_together
|
|
|
|
|
|
|
|
|
|
Sets of field names that, taken together, are indexed::
|
|
|
|
|
|
|
|
|
|
index_together = [
|
|
|
|
|
["pub_date", "deadline"],
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
This list of fields will be indexed together (i.e. the appropriate
|
|
|
|
|
``CREATE INDEX`` statement will be issued.)
|
|
|
|
|
|
2014-03-02 03:06:15 +08:00
|
|
|
|
.. versionchanged:: 1.7
|
|
|
|
|
|
|
|
|
|
For convenience, ``index_together`` can be a single list when dealing with a single
|
|
|
|
|
set of fields::
|
2014-03-24 23:42:56 +08:00
|
|
|
|
|
2014-03-02 03:06:15 +08:00
|
|
|
|
index_together = ["pub_date", "deadline"]
|
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
``verbose_name``
|
|
|
|
|
----------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.verbose_name
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
A human-readable name for the object, singular::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
verbose_name = "pizza"
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If this isn't given, Django will use a munged version of the class name:
|
|
|
|
|
``CamelCase`` becomes ``camel case``.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
|
|
``verbose_name_plural``
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
.. attribute:: Options.verbose_name_plural
|
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
The plural name for the object::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
verbose_name_plural = "stories"
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-12-30 04:30:24 +08:00
|
|
|
|
If this isn't given, Django will use :attr:`~Options.verbose_name` + ``"s"``.
|