From b1a01a6256e29b47b79baeb5671d662fc021c069 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 20 Jan 2013 12:43:39 -0500 Subject: - replace mssql_ordering with generalized #695 solution - documentation for mssql index options plus changelog and fixes --- lib/sqlalchemy/schema.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'lib/sqlalchemy/schema.py') diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 5cb592857..3e8f4ea82 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -2340,15 +2340,18 @@ class Index(ColumnCollectionMixin, SchemaItem): column index, adding ``index=True`` to the ``Column`` definition is a shorthand equivalent for an unnamed, single column :class:`.Index`. - See also: + .. seealso:: + + :ref:`schema_indexes` - General information on :class:`.Index`. - :ref:`schema_indexes` - General information on :class:`.Index`. + :ref:`postgresql_indexes` - PostgreSQL-specific options available for the + :class:`.Index` construct. - :ref:`postgresql_indexes` - PostgreSQL-specific options available for the - :class:`.Index` construct. + :ref:`mysql_indexes` - MySQL-specific options available for the + :class:`.Index` construct. - :ref:`mysql_indexes` - MySQL-specific options available for the - :class:`.Index` construct. + :ref:`mssql_indexes` - MSSQL-specific options available for the + :class:`.Index` construct. """ -- cgit v1.2.1