diff options
| author | Tim Graham <timograham@gmail.com> | 2016-08-12 18:03:19 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-08-12 18:04:03 -0400 |
| commit | f8307c4b8cb0f8bfb16c8d819d16d90cfc763a29 (patch) | |
| tree | 009546c86de96c544d10af361134d5fbb243f085 | |
| parent | d8cda352b11ece1070f4aaf4b7a9894908a6160c (diff) | |
[1.10.x] Removed some unnecessary repetition in PostgreSQL operations docs.
Backport of e1acc9dc6638379513648b301e870ff2a40001fd from master
| -rw-r--r-- | docs/ref/contrib/postgres/operations.txt | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt index f4dd44ebbd..cc2cbe7c51 100644 --- a/docs/ref/contrib/postgres/operations.txt +++ b/docs/ref/contrib/postgres/operations.txt @@ -23,9 +23,8 @@ the ``django.contrib.postgres.operations`` module. .. 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. + Installs the ``hstore`` extension and also sets up the connection to + interpret hstore data for possible use in subsequent migrations. ``TrigramExtension`` ==================== @@ -34,13 +33,11 @@ the ``django.contrib.postgres.operations`` module. .. versionadded:: 1.10 - A subclass of :class:`~django.contrib.postgres.operations.CreateExtension` - that installs the ``pg_trgm`` extension. + Installs the ``pg_trgm`` extension. ``UnaccentExtension`` ===================== .. class:: UnaccentExtension() - A subclass of :class:`~django.contrib.postgres.operations.CreateExtension` - which will install the ``unaccent`` extension. + Installs the ``unaccent`` extension. |
