Available Meta options
abstract
- Options.abstract
- If abstract = True, this model will be an
abstract base class.
app_label
- Options.app_label
- If a model exists outside of the standard locations (models.py or
a models package in an app), the model must define which app it is part
of:
app_label = 'myapp'
New in Django 1.7: app_label is no longer required for models that are defined outside the models module of an application.
db_table
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 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.
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 MySQL notes for more details.
Table name quoting for Oracle
In order to meet the 30-char limitation Oracle has on table names,
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"'
Such quoted names can also be used with Django’s other supported database
backends; except for Oracle, however, the quotes have no effect. See the
Oracle notes for more details.
db_tablespace
- Options.db_tablespace
- The name of the database tablespace to use
for this model. The default is the project’s DEFAULT_TABLESPACE
setting, if set. If the backend doesn’t support tablespaces, this option is
ignored.
get_latest_by
- Options.get_latest_by
- The name of an orderable field in the model, typically a DateField,
DateTimeField, or IntegerField. This specifies the default
field to use in your model Manager’s
latest() and
earliest() methods.
Example:
get_latest_by = "order_date"
managed
- Options.managed
- Defaults to True, meaning Django will create the appropriate database
tables in migrate or as part of migrations and remove them as
part of a flush management command. That is, Django
manages the database tables’ lifecycles.
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
- 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.
- If a model with managed=False contains a 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 ManyToManyField.through attribute to make the relation use your custom model.
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: Proxy models.
order_with_respect_to
- Options.order_with_respect_to
- 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 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:
from django.db import models class Question(models.Model): text = models.TextField() # ... class Answer(models.Model): question = models.ForeignKey(Question) # ... class Meta: order_with_respect_to = 'question'
>>> question = Question.objects.get(id=1) >>> question.get_answer_order() [1, 2, 3]
>>> question.set_answer_order([3, 1, 2])
>>> answer = Answer.objects.get(id=2) >>> answer.get_next_in_order() <Answer: 3> >>> answer.get_previous_in_order() <Answer: 1>
order_with_respect_to implicitly sets the ordering option
Internally, order_with_respect_to adds an additional field/database
column named _order and sets the model’s ordering
option to this field. Consequently, order_with_respect_to and
ordering cannot be used together, and the ordering added by
order_with_respect_to will apply whenever you obtain a list of objects
of this model.
Changing order_with_respect_to
Because order_with_respect_to adds a new database column, be sure to
make and apply the appropriate migrations if you add or change
order_with_respect_to after your initial migrate.
ordering
- Options.ordering
- The default ordering for the object, for use when obtaining lists of objects:
ordering = ['-order_date']
For example, to order by a pub_date field ascending, use this:
ordering = ['pub_date']
ordering = ['-pub_date']
ordering = ['-pub_date', 'author']
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
implicitly include all of its default orderings as well.
permissions
- Options.permissions
- Extra permissions to enter into the permissions table when creating this object.
Add, delete and change permissions are automatically created for each
model. This example specifies an extra permission, can_deliver_pizzas:
permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)
default_permissions
- Options.default_permissions
- New in Django 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 the model is created by migrate in order to prevent any omitted permissions from being created.
proxy
- Options.proxy
- If proxy = True, a model which subclasses another model will be treated as
a proxy model.
select_on_save
- Options.select_on_save
- Determines if Django will use the pre-1.6
django.db.models.Model.save() algorithm. The old algorithm
uses SELECT to determine if there is an existing row to be updated.
The new algorithm tries an UPDATE directly. In some rare cases the
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 django.db.models.Model.save() for more about the old and new saving algorithm.
unique_together
- Options.unique_together
- Sets of field names that, taken together, must be unique:
unique_together = (("driver", "restaurant"),)
For convenience, unique_together can be a single tuple when dealing with a single set of fields:
unique_together = ("driver", "restaurant")
Changed in Django 1.7: The ValidationError raised during model validation when the constraint is violated has the unique_together error code.
index_together
- Options.index_together
- Sets of field names that, taken together, are indexed:
index_together = [ ["pub_date", "deadline"], ]
Changed in Django 1.7.For convenience, index_together can be a single list when dealing with a single set of fields:
index_together = ["pub_date", "deadline"]
verbose_name
- Options.verbose_name
- A human-readable name for the object, singular:
verbose_name = "pizza"
verbose_name_plural
- Options.verbose_name_plural
- The plural name for the object:
verbose_name_plural = "stories"
===================
eg:1
class Meta:
verbose_name = "Title for Email"
verbose_name_plural = "Title for Emails"
db_table = "email_titles"
eg:2
class Meta:
verbose_name = "Email Template"
verbose_name_plural = "Email Templates"
db_table = "email_templates"
No comments:
Post a Comment