]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Replace HTML entities with reST markup
authorLele Gaifax <lele@metapensiero.it>
Tue, 11 Aug 2009 08:19:37 +0000 (08:19 +0000)
committerLele Gaifax <lele@metapensiero.it>
Tue, 11 Aug 2009 08:19:37 +0000 (08:19 +0000)
doc/build/metadata.rst

index 44449a067edfcbc84c2a73ddd3255e4379267d00..f5d2a7968dece442ec97d793bad80baa9436b5e7 100644 (file)
@@ -541,7 +541,7 @@ Indexes
 -------
 
 
-Indexes can be created anonymously (using an auto-generated name "ix_&lt;column label&gt;") for a single column using the inline ``index`` keyword on ``Column``, which also modifies the usage of ``unique`` to apply the uniqueness to the index itself, instead of adding a separate UNIQUE constraint.  For indexes with specific names or which encompass more than one column, use the ``Index`` construct, which requires a name.  
+Indexes can be created anonymously (using an auto-generated name "ix_\ *column label*") for a single column using the inline ``index`` keyword on ``Column``, which also modifies the usage of ``unique`` to apply the uniqueness to the index itself, instead of adding a separate UNIQUE constraint.  For indexes with specific names or which encompass more than one column, use the ``Index`` construct, which requires a name.  
 
 Note that the ``Index`` construct is created **externally** to the table which it corresponds, using ``Column`` objects and not strings.