indexes.txt 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. =====================
  2. Model index reference
  3. =====================
  4. .. module:: django.db.models.indexes
  5. .. currentmodule:: django.db.models
  6. Index classes ease creating database indexes. They can be added using the
  7. :attr:`Meta.indexes <django.db.models.Options.indexes>` option. This document
  8. explains the API references of :class:`Index` which includes the `index
  9. options`_.
  10. .. admonition:: Referencing built-in indexes
  11. Indexes are defined in ``django.db.models.indexes``, but for convenience
  12. they're imported into :mod:`django.db.models`. The standard convention is
  13. to use ``from django.db import models`` and refer to the indexes as
  14. ``models.<IndexClass>``.
  15. ``Index`` options
  16. =================
  17. .. class:: Index(fields=[], name=None, db_tablespace=None)
  18. Creates an index (B-Tree) in the database.
  19. ``fields``
  20. ----------
  21. .. attribute:: Index.fields
  22. A list of the name of the fields on which the index is desired.
  23. By default, indexes are created with an ascending order for each column. To
  24. define an index with a descending order for a column, add a hyphen before the
  25. field's name.
  26. For example ``Index(fields=['headline', '-pub_date'])`` would create SQL with
  27. ``(headline, pub_date DESC)``. Index ordering isn't supported on MySQL. In that
  28. case, a descending index is created as a normal index.
  29. ``name``
  30. --------
  31. .. attribute:: Index.name
  32. The name of the index. If ``name`` isn't provided Django will auto-generate a
  33. name. For compatibility with different databases, index names cannot be longer
  34. than 30 characters and shouldn't start with a number (0-9) or underscore (_).
  35. ``db_tablespace``
  36. -----------------
  37. .. attribute:: Index.db_tablespace
  38. .. versionadded:: 2.0
  39. The name of the :doc:`database tablespace </topics/db/tablespaces>` to use for
  40. this index. For single field indexes, if ``db_tablespace`` isn't provided, the
  41. index is created in the ``db_tablespace`` of the field.
  42. If :attr:`.Field.db_tablespace` isn't specified (or if the index uses multiple
  43. fields), the index is created in tablespace specified in the
  44. :attr:`~django.db.models.Options.db_tablespace` option inside the model's
  45. ``class Meta``. If neither of those tablespaces are set, the index is created
  46. in the same tablespace as the table.
  47. .. seealso::
  48. For a list of PostgreSQL-specific indexes, see
  49. :mod:`django.contrib.postgres.indexes`.