summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2015-11-05 23:34:27 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2015-11-10 13:01:49 -0500
commitbc3ee40a2e20172acdf6dd98675342a356826ab9 (patch)
treeb967b25fc1dd26a08347cff611d289b2e5802528 /lib/sqlalchemy/dialects/postgresql/base.py
parent7a4d8dfd5419cfaa99d403e18f3b976e82e3eb65 (diff)
downloadsqlalchemy-bc3ee40a2e20172acdf6dd98675342a356826ab9.tar.gz
Updated PostgreSQL links to point to "current" rather than hardcoded version
(cherry picked from commit a2e83dbd2aa14de19a309ad13144151b56804674)
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 72b9fc1f4..e1568332e 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -102,7 +102,7 @@ via foreign key constraint, a decision must be made as to how the ``.schema``
is represented in those remote tables, in the case where that remote
schema name is also a member of the current
`Postgresql search path
-<http://www.postgresql.org/docs/devel/static/ddl-schemas.html#DDL-SCHEMAS-PATH>`_.
+<http://www.postgresql.org/docs/current/static/ddl-schemas.html#DDL-SCHEMAS-PATH>`_.
By default, the Postgresql dialect mimics the behavior encouraged by
Postgresql's own ``pg_get_constraintdef()`` builtin procedure. This function
@@ -506,7 +506,7 @@ dialect in conjunction with the :class:`.Table` construct:
.. seealso::
`Postgresql CREATE TABLE options
- <http://www.postgresql.org/docs/devel/static/sql-createtable.html>`_
+ <http://www.postgresql.org/docs/current/static/sql-createtable.html>`_
ENUM Types
----------