summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres/operations.txt
blob: f4dd44ebbdc9b48ac86beb3781eac624d2194f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
=============================
Database migration operations
=============================

All of these :doc:`operations </ref/migration-operations>` are available from
the ``django.contrib.postgres.operations`` module.

.. currentmodule:: django.contrib.postgres.operations

``CreateExtension``
===================

.. class:: CreateExtension(name)

    An ``Operation`` subclass which installs PostgreSQL extensions.

    .. attribute:: name

        This is a required argument. The name of the extension to be installed.

``HStoreExtension``
===================

.. class:: HStoreExtension()

    A subclass of :class:`~django.contrib.postgres.operations.CreateExtension`
    which will install the ``hstore`` extension and also immediately set up the
    connection to interpret hstore data.

``TrigramExtension``
====================

.. class:: TrigramExtension()

    .. versionadded:: 1.10

    A subclass of :class:`~django.contrib.postgres.operations.CreateExtension`
    that installs the ``pg_trgm`` extension.

``UnaccentExtension``
=====================

.. class:: UnaccentExtension()

    A subclass of :class:`~django.contrib.postgres.operations.CreateExtension`
    which will install the ``unaccent`` extension.