2016-01-03 10:56:22 +00:00
|
|
|
=============================
|
2014-03-14 17:34:49 +00:00
|
|
|
Database migration operations
|
|
|
|
=============================
|
|
|
|
|
|
|
|
All of these :doc:`operations </ref/migration-operations>` are available from
|
|
|
|
the ``django.contrib.postgres.operations`` module.
|
|
|
|
|
2016-11-05 13:18:11 +00:00
|
|
|
.. _create-postgresql-extensions:
|
|
|
|
|
|
|
|
Creating extension using migrations
|
|
|
|
===================================
|
|
|
|
|
|
|
|
You can create a PostgreSQL extension in your database using a migration file.
|
|
|
|
This example creates an hstore extension, but the same principles apply for
|
|
|
|
other extensions.
|
|
|
|
|
|
|
|
Set up the hstore extension in PostgreSQL before the first ``CreateModel``
|
|
|
|
or ``AddField`` operation that involves
|
|
|
|
:class:`~django.contrib.postgres.fields.HStoreField` by adding a migration with
|
|
|
|
the :class:`~django.contrib.postgres.operations.HStoreExtension` operation.
|
|
|
|
For example::
|
|
|
|
|
|
|
|
from django.contrib.postgres.operations import HStoreExtension
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
...
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
HStoreExtension(),
|
|
|
|
...
|
|
|
|
]
|
|
|
|
|
|
|
|
Creating the extension requires a database user with superuser privileges.
|
|
|
|
If the Django database user doesn't have superuser privileges, you'll have
|
|
|
|
to create the extension outside of Django migrations with a user that has
|
|
|
|
the appropriate privileges. In that case, connect to your Django database and
|
|
|
|
run the query ``CREATE EXTENSION IF NOT EXISTS hstore;``.
|
|
|
|
|
2014-03-14 17:34:49 +00:00
|
|
|
.. currentmodule:: django.contrib.postgres.operations
|
|
|
|
|
2016-01-24 21:26:11 +00:00
|
|
|
``CreateExtension``
|
|
|
|
===================
|
2014-03-14 17:34:49 +00:00
|
|
|
|
|
|
|
.. 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.
|
|
|
|
|
2016-08-08 03:15:08 +00:00
|
|
|
``BtreeGinExtension``
|
|
|
|
=====================
|
|
|
|
|
|
|
|
.. class:: BtreeGinExtension()
|
|
|
|
|
|
|
|
Install the ``btree_gin`` extension.
|
|
|
|
|
2017-07-01 13:30:34 +00:00
|
|
|
``BtreeGistExtension``
|
|
|
|
======================
|
|
|
|
|
|
|
|
.. class:: BtreeGistExtension()
|
|
|
|
|
|
|
|
Install the ``btree_gist`` extension.
|
|
|
|
|
2016-06-01 21:43:59 +00:00
|
|
|
``CITextExtension``
|
|
|
|
===================
|
|
|
|
|
|
|
|
.. class:: CITextExtension()
|
|
|
|
|
|
|
|
Installs the ``citext`` extension.
|
|
|
|
|
2017-03-29 21:52:42 +00:00
|
|
|
``CryptoExtension``
|
|
|
|
===================
|
|
|
|
|
|
|
|
.. class:: CryptoExtension()
|
|
|
|
|
|
|
|
Installs the ``pgcrypto`` extension.
|
|
|
|
|
2016-01-24 21:26:11 +00:00
|
|
|
``HStoreExtension``
|
|
|
|
===================
|
2014-03-14 17:34:49 +00:00
|
|
|
|
|
|
|
.. class:: HStoreExtension()
|
|
|
|
|
2016-08-12 22:03:19 +00:00
|
|
|
Installs the ``hstore`` extension and also sets up the connection to
|
|
|
|
interpret hstore data for possible use in subsequent migrations.
|
2014-09-05 20:53:11 +00:00
|
|
|
|
2015-06-05 16:37:48 +00:00
|
|
|
``TrigramExtension``
|
|
|
|
====================
|
|
|
|
|
|
|
|
.. class:: TrigramExtension()
|
|
|
|
|
2016-08-12 22:03:19 +00:00
|
|
|
Installs the ``pg_trgm`` extension.
|
2015-06-05 16:37:48 +00:00
|
|
|
|
2016-01-24 21:26:11 +00:00
|
|
|
``UnaccentExtension``
|
|
|
|
=====================
|
2014-09-05 20:53:11 +00:00
|
|
|
|
|
|
|
.. class:: UnaccentExtension()
|
|
|
|
|
2016-08-12 22:03:19 +00:00
|
|
|
Installs the ``unaccent`` extension.
|