diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-02 18:01:59 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-02 18:01:59 -0500 |
commit | 4b3967087565165dd49871beaaa52393edb4eba1 (patch) | |
tree | abb570bff472c7f2c4ee774851c4b2a7b1ce5852 | |
parent | 0326f3cf014ffb4928b4c6051d2fca13cb6945d7 (diff) | |
download | sqlalchemy-4b3967087565165dd49871beaaa52393edb4eba1.tar.gz |
- lets intersphinx the new alembic article on constraint names
-rw-r--r-- | doc/build/conf.py | 5 | ||||
-rw-r--r-- | doc/build/core/constraints.rst | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index 1546177a6..6ad08fe38 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -33,6 +33,7 @@ import sqlalchemy extensions = [ 'sphinx.ext.autodoc', + 'sphinx.ext.intersphinx', 'builder.autodoc_mods', 'changelog', 'sphinx_paramlinks', @@ -320,3 +321,7 @@ epub_copyright = u'2007-2014, SQLAlchemy authors' # Allow duplicate toc entries. #epub_tocdup = True + +intersphinx_mapping = { + 'alembic': ('http://alembic.readthedocs.org/en/latest/', None), +} diff --git a/doc/build/core/constraints.rst b/doc/build/core/constraints.rst index d9a8fa98a..91f794de1 100644 --- a/doc/build/core/constraints.rst +++ b/doc/build/core/constraints.rst @@ -424,6 +424,8 @@ name as follows:: :paramref:`.MetaData.naming_convention` - for additional usage details as well as a listing of all avaiable naming components. + :ref:`alembic:tutorial_constraint_names` - in the Alembic documentation. + .. versionadded:: 0.9.2 Added the :paramref:`.MetaData.naming_convention` argument. Constraints API |