summaryrefslogtreecommitdiff
path: root/docs/ref/databases.txt
diff options
context:
space:
mode:
authorMarti Raudsepp <marti@juffo.org>2016-10-25 18:43:32 +0300
committerTim Graham <timograham@gmail.com>2016-10-25 11:43:54 -0400
commitae91fc786cc2d93a325a940f0ead77d00cb42a17 (patch)
tree8cbecab0639ab8d921af19f32d6f30bdf4df0ff6 /docs/ref/databases.txt
parent3a416e4ba9f7094be55110dae8e5a6451984d226 (diff)
[1.10.x] Updated postgresql.org links to https and made them canonical.
Backport of 51fbe2a60d9c7ff3fe62688ad262ccda648f506d from master
Diffstat (limited to 'docs/ref/databases.txt')
-rw-r--r--docs/ref/databases.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 046ceb604d..7a6e4c6cf1 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -121,7 +121,7 @@ user with `ALTER ROLE`_.
Django will work just fine without this optimization, but each new connection
will do some additional queries to set these parameters.
-.. _ALTER ROLE: http://www.postgresql.org/docs/current/interactive/sql-alterrole.html
+.. _ALTER ROLE: https://www.postgresql.org/docs/current/static/sql-alterrole.html
.. _database-isolation-level:
@@ -148,7 +148,7 @@ configuration in :setting:`DATABASES`::
handle exceptions raised on serialization failures. This option is
designed for advanced uses.
-.. _isolation level: http://www.postgresql.org/docs/current/static/transaction-iso.html
+.. _isolation level: https://www.postgresql.org/docs/current/static/transaction-iso.html
Indexes for ``varchar`` and ``text`` columns
--------------------------------------------
@@ -162,7 +162,7 @@ for the column. The extra index is necessary to correctly perform
lookups that use the ``LIKE`` operator in their SQL, as is done with the
``contains`` and ``startswith`` lookup types.
-.. _PostgreSQL operator class: http://www.postgresql.org/docs/current/static/indexes-opclass.html
+.. _PostgreSQL operator class: https://www.postgresql.org/docs/current/static/indexes-opclass.html
Migration operation for adding extensions
-----------------------------------------
@@ -175,7 +175,7 @@ Speeding up test execution with non-durable settings
----------------------------------------------------
You can speed up test execution times by `configuring PostgreSQL to be
-non-durable <http://www.postgresql.org/docs/current/static/non-durability.html>`_.
+non-durable <https://www.postgresql.org/docs/current/static/non-durability.html>`_.
.. warning::