From: Lele Gaifax Date: Tue, 11 Aug 2009 08:19:37 +0000 (+0000) Subject: Replace HTML entities with reST markup X-Git-Tag: rel_0_6beta1~334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f50bac1b74536bc68f69b8ce12813b0ca880e0f0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Replace HTML entities with reST markup --- diff --git a/doc/build/metadata.rst b/doc/build/metadata.rst index 44449a067e..f5d2a7968d 100644 --- a/doc/build/metadata.rst +++ b/doc/build/metadata.rst @@ -541,7 +541,7 @@ Indexes ------- -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. +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.