2016-01-03 18:56:22 +08:00
|
|
|
=============================
|
2014-03-15 01:34:49 +08:00
|
|
|
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
|
|
|
|
|
2016-01-25 05:26:11 +08:00
|
|
|
``CreateExtension``
|
|
|
|
===================
|
2014-03-15 01:34:49 +08: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-01-25 05:26:11 +08:00
|
|
|
``HStoreExtension``
|
|
|
|
===================
|
2014-03-15 01:34:49 +08:00
|
|
|
|
|
|
|
.. 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.
|
2014-09-06 04:53:11 +08:00
|
|
|
|
2016-01-25 05:26:11 +08:00
|
|
|
``UnaccentExtension``
|
|
|
|
=====================
|
2014-09-06 04:53:11 +08:00
|
|
|
|
|
|
|
.. class:: UnaccentExtension()
|
|
|
|
|
|
|
|
A subclass of :class:`~django.contrib.postgres.operations.CreateExtension`
|
|
|
|
which will install the ``unaccent`` extension.
|