]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- update alembic link
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Jun 2016 13:35:54 +0000 (09:35 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Jun 2016 13:38:28 +0000 (09:38 -0400)
Change-Id: I5ac6ba8234873fdd19bee6c1decd311a9cb4d55e
(cherry picked from commit 13f9578082ae669734d65a38cb6058e21df88362)

doc/build/conf.py
doc/build/core/constraints.rst
doc/build/core/metadata.rst

index 069f808b66b60eda44a5221f9be980d89dc857cc..bfb281c5a07bc19bbe205c94a20d9ed8b1dc4b56 100644 (file)
@@ -341,7 +341,7 @@ epub_copyright = u'2007-2015, SQLAlchemy authors'
 #epub_tocdup = True
 
 intersphinx_mapping = {
-    'alembic': ('http://alembic.readthedocs.org/en/latest/', None),
+    'alembic': ('http://alembic.zzzcomputing.com/en/latest/', None),
     'psycopg2': ('http://pythonhosted.org/psycopg2', None),
 }
 
index a979f3d7a093c33409fcee18618f0b2d73771cb2..f5ea0e4b1cf76d2376bf1abc65e553a7b4048204 100644 (file)
@@ -291,7 +291,7 @@ parameters which create :class:`.UniqueConstraint` and :class:`.Index` objects
 without an explicit name being specified.
 
 The use case of alteration of existing tables and constraints can be handled
-by schema migration tools such as `Alembic <http://http://alembic.readthedocs.org/>`_.
+by schema migration tools such as `Alembic <http://alembic.zzzcomputing.com/>`_.
 However, neither Alembic nor SQLAlchemy currently create names for constraint
 objects where the name is otherwise unspecified, leading to the case where
 being able to alter existing constraints means that one must reverse-engineer
index b36684656a7b7375689e214b7668cc5e2fc4a087..9b231010b28650800b1b2f9c8489065d35353a11 100644 (file)
@@ -243,7 +243,7 @@ database schemas in relation to application code using schema migration tools.
 
 There are two major migration tools available for SQLAlchemy:
 
-* `Alembic <http://alembic.readthedocs.org>`_ - Written by the author of SQLAlchemy,
+* `Alembic <http://alembic.zzzcomputing.com>`_ - Written by the author of SQLAlchemy,
   Alembic features a highly customizable environment and a minimalistic usage pattern,
   supporting such features as transactional DDL, automatic generation of "candidate"
   migrations, an "offline" mode which generates SQL scripts, and support for branch