PostgreSQL specific model indexesLink para este cabeçalho
The following are PostgreSQL specific indexes
available from the django.contrib.postgres.indexes module.
BrinIndexLink para este cabeçalho
- class BrinIndex(fields=[], name=None, pages_per_range=None)Link para esta definição
Creates a BRIN index.
The
pages_per_rangeargument takes a positive integer.
GinIndexLink para este cabeçalho
- class GinIndexLink para esta definição
Creates a gin index.
To use this index on data types not in the built-in operator classes, you need to activate the btree_gin extension on PostgreSQL. You can install it using the
BtreeGinExtensionmigration operation.