Model Meta optionsLink para este cabeçalho
This document explains all the possible metadata options that you can give your model in its internal
class Meta.
Available Meta optionsLink para este cabeçalho
abstractLink para este cabeçalho
- Options.abstractLink para esta definição
If
abstract = True, this model will be an abstract base class.
app_labelLink para este cabeçalho
- Options.app_labelLink para esta definição
If a model is defined outside of an application in
INSTALLED_APPS, it must declare which app it belongs to:app_label = 'myapp'If you want to represent a model with the format
app_label.object_nameorapp_label.model_nameyou can usemodel._meta.labelormodel._meta.label_lowerrespectively.
base_manager_nameLink para este cabeçalho
- Options.base_manager_nameLink para esta definição
The attribute name of the manager, for example,
'objects', to use for the model’s_base_manager.
db_tableLink para este cabeçalho
- Options.db_tableLink para esta definição
The name of the database table to use for the model:
db_table = 'music_album'
Table namesLink para este cabeçalho
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
name you used in manage.py startapp – to the model’s
class name, with an underscore between them.
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.
db_tablespaceLink para este cabeçalho
- Options.db_tablespaceLink para esta definição
The name of the database tablespace to use for this model. The default is the project’s
DEFAULT_TABLESPACEsetting, if set. If the backend doesn’t support tablespaces, this option is ignored.
default_manager_nameLink para este cabeçalho
- Options.default_manager_nameLink para esta definição
The name of the manager to use for the model’s
_default_manager.
get_latest_byLink para este cabeçalho
- Options.get_latest_byLink para esta definição
The name of a field or a list of field names in the model, typically
DateField,DateTimeField, orIntegerField. This specifies the default field(s) to use in your modelManager’slatest()andearliest()methods.Exemplo
# Latest by ascending order_date. get_latest_by = "order_date" # Latest by priority descending, order_date ascending. get_latest_by = ['-priority', 'order_date']See the
latest()docs for more.
managedLink para este cabeçalho
- Options.managedLink para esta definição
Defaults to
True, meaning Django will create the appropriate database tables inmigrateor as part of migrations and remove them as part of aflushmanagement command. That is, Django manages the database tables’ lifecycles.If
False, no database table creation, modification, 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 whenmanaged=False. All other aspects of model handling are exactly the same as normal. This includesAdding 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.
If a model with
managed=Falsecontains aManyToManyFieldthat 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
managedset as needed) and use theManyToManyField.throughattribute to make the relation use your custom model.
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.If you’re interested in changing the Python-level behavior of a model class, you could use
managed=Falseand create a copy of an existing model. However, there’s a better approach for that situation: Modelos Proxy.
order_with_respect_toLink para este cabeçalho
- Options.order_with_respect_toLink para esta definição
Makes this object orderable with respect to the given field, usually a
ForeignKey. This can be used to make related objects orderable with respect to a parent object. For example, if anAnswerrelates to aQuestionobject, and a question has more than one answer, and the order of answers matters, you’d do this:from django.db import models class Question(models.Model): text = models.TextField() # ... class Answer(models.Model): question = models.ForeignKey(Question, on_delete=models.CASCADE) # ... class Meta: order_with_respect_to = 'question'When
order_with_respect_tois set, two additional methods are provided to retrieve and to set the order of the related objects:get_RELATED_order()andset_RELATED_order(), whereRELATEDis the lowercased model name. For example, assuming that aQuestionobject has multiple relatedAnswerobjects, the list returned contains the primary keys of the relatedAnswerobjects:>>> question = Question.objects.get(id=1) >>> question.get_answer_order() [1, 2, 3]The order of a
Questionobject’s relatedAnswerobjects can be set by passing in a list ofAnswerprimary keys:>>> question.set_answer_order([3, 1, 2])The related objects also get two methods,
get_next_in_order()andget_previous_in_order(), which can be used to access those objects in their proper order. Assuming theAnswerobjects are ordered byid:>>> answer = Answer.objects.get(id=2) >>> answer.get_next_in_order() <Answer: 3> >>> answer.get_previous_in_order() <Answer: 1>
orderingLink para este cabeçalho
- Options.orderingLink para esta definição
The default ordering for the object, for use when obtaining lists of objects:
ordering = ['-order_date']This is a tuple or list of strings and/or query expressions. 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.
For example, to order by a
pub_datefield ascending, use this:ordering = ['pub_date']To order by
pub_datedescending, use this:ordering = ['-pub_date']To order by
pub_datedescending, then byauthorascending, use this:ordering = ['-pub_date', 'author']You can also use query expressions. To order by
authorascending and make null values sort last, use this:from django.db.models import F ordering = [F('author').asc(nulls_last=True)]
permissionsLink para este cabeçalho
- Options.permissionsLink para esta definição
Extra permissions to enter into the permissions table when creating this object. Add, change, delete, and view permissions are automatically created for each model. This example specifies an extra permission,
can_deliver_pizzas:permissions = [('can_deliver_pizzas', 'Can deliver pizzas')]This is a list or tuple of 2-tuples in the format
(permission_code, human_readable_permission_name).
default_permissionsLink para este cabeçalho
- Options.default_permissionsLink para esta definição
Defaults to
('add', 'change', 'delete', 'view'). 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 the model is created bymigratein order to prevent any omitted permissions from being created.
proxyLink para este cabeçalho
- Options.proxyLink para esta definição
If
proxy = True, a model which subclasses another model will be treated as a proxy model.
required_db_featuresLink para este cabeçalho
- Options.required_db_featuresLink para esta definição
List of database features that the current connection should have so that the model is considered during the migration phase. For example, if you set this list to
['gis_enabled'], the model will only be synchronized on GIS-enabled databases. It’s also useful to skip some models when testing with several database backends. Avoid relations between models that may or may not be created as the ORM doesn’t handle this.
required_db_vendorLink para este cabeçalho
- Options.required_db_vendorLink para esta definição
Name of a supported database vendor that this model is specific to. Current built-in vendor names are:
sqlite,postgresql,mysql,oracle. If this attribute is not empty and the current connection vendor doesn’t match it, the model will not be synchronized.
select_on_saveLink para este cabeçalho
- Options.select_on_saveLink para esta definição
Determines if Django will use the pre-1.6
django.db.models.Model.save()algorithm. The old algorithm usesSELECTto determine if there is an existing row to be updated. The new algorithm tries anUPDATEdirectly. In some rare cases theUPDATEof an existing row isn’t visible to Django. An example is the PostgreSQLON UPDATEtrigger which returnsNULL. In such cases the new algorithm will end up doing anINSERTeven when a row exists in the database.Usually there is no need to set this attribute. The default is
False.See
django.db.models.Model.save()for more about the old and new saving algorithm.
indexesLink para este cabeçalho
- Options.indexesLink para esta definição
A list of indexes that you want to define on the model:
from django.db import models class Customer(models.Model): first_name = models.CharField(max_length=100) last_name = models.CharField(max_length=100) class Meta: indexes = [ models.Index(fields=['last_name', 'first_name']), models.Index(fields=['first_name'], name='first_name_idx'), ]
unique_togetherLink para este cabeçalho
- Options.unique_togetherLink para esta definição
-
Sets of field names that, taken together, must be unique:
unique_together = [['driver', 'restaurant']]This is a list of lists that must be unique when considered together. It’s used in the Django admin and is enforced at the database level (i.e., the appropriate
UNIQUEstatements are included in theCREATE TABLEstatement).For convenience,
unique_togethercan be a single list when dealing with a single set of fields:unique_together = ['driver', 'restaurant']A
ManyToManyFieldcannot be included in unique_together. (It’s not clear what that would even mean!) If you need to validate uniqueness related to aManyToManyField, try using a signal or an explicitthroughmodel.The
ValidationErrorraised during model validation when the constraint is violated has theunique_togethererror code.
index_togetherLink para este cabeçalho
- Options.index_togetherLink para esta definição
-
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 INDEXstatement will be issued.)For convenience,
index_togethercan be a single list when dealing with a single set of fields:index_together = ["pub_date", "deadline"]
constraintsLink para este cabeçalho
- Options.constraintsLink para esta definição
A list of constraints that you want to define on the model:
from django.db import models class Customer(models.Model): age = models.IntegerField() class Meta: constraints = [ models.CheckConstraint(check=models.Q(age__gte=18), name='age_gte_18'), ]
verbose_nameLink para este cabeçalho
- Options.verbose_nameLink para esta definição
A human-readable name for the object, singular:
verbose_name = "pizza"If this isn’t given, Django will use a munged version of the class name:
CamelCasebecomescamel case.
verbose_name_pluralLink para este cabeçalho
- Options.verbose_name_pluralLink para esta definição
The plural name for the object:
verbose_name_plural = "stories"If this isn’t given, Django will use
verbose_name+"s".
Read-only Meta attributesLink para este cabeçalho
labelLink para este cabeçalho
- Options.labelLink para esta definição
Representation of the object, returns
app_label.object_name, e.g.'polls.Question'.
label_lowerLink para este cabeçalho
- Options.label_lowerLink para esta definição
Representation of the model, returns
app_label.model_name, e.g.'polls.question'.