diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-10-11 00:15:43 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-10-11 00:15:43 -0400 |
commit | a0cc36c23966bb2a5884e6760ea3efde44fc3518 (patch) | |
tree | 2a41c3fc51f556b9f6cf012a5e3b8ec2e00f1f2e /lib/sqlalchemy/schema.py | |
parent | 879c932018fd22573163c76042761ce98ccaaaa3 (diff) | |
download | sqlalchemy-a0cc36c23966bb2a5884e6760ea3efde44fc3518.tar.gz |
- adjust some tests and such to work better with a mysql 5.5 install
- Added mysql_length parameter to Index construct,
specifies "length" for indexes. [ticket:2293]
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 99c8acbfe..3d00b3197 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -2086,6 +2086,8 @@ class Index(ColumnCollectionMixin, SchemaItem): :ref:`schema_indexes` - General information on :class:`.Index`. :ref:`postgresql_indexes` - PostgreSQL-specific options available for the :class:`.Index` construct. + + :ref:`mysql_indexes` - MySQL-specific options available for the :class:`.Index` construct. """ __visit_name__ = 'index' |