diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-01-20 12:43:39 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-01-20 12:43:39 -0500 |
commit | b1a01a6256e29b47b79baeb5671d662fc021c069 (patch) | |
tree | 6f26689b1fefb9d8ef8c9052e60886bf74fce6ad /lib/sqlalchemy/schema.py | |
parent | bc75bbd62d87ff12ceb5db711652903b0973d9e6 (diff) | |
download | sqlalchemy-b1a01a6256e29b47b79baeb5671d662fc021c069.tar.gz |
- replace mssql_ordering with generalized #695 solution
- documentation for mssql index options plus changelog and fixes
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 15 |
1 files changed, 9 insertions, 6 deletions
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. """ |