diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-16 10:03:05 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-16 10:03:05 -0400 |
commit | 869620902a5a9a0cfc8e9021e3aa31178f18152c (patch) | |
tree | 04be11ec49ab24c9e58e52328a17efe2b3c72dc8 | |
parent | 59141d360e70d1a762719206e3cb0220b4c53fef (diff) | |
download | sqlalchemy-869620902a5a9a0cfc8e9021e3aa31178f18152c.tar.gz |
merge error here, though also hedge between explaining about the expressions here vs.
hoping they read the class-level docstring
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index ccab31991..ce4182c54 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -2509,19 +2509,12 @@ class Index(ColumnCollectionMixin, SchemaItem): :param name: The name of the index -<<<<<<< HEAD :param \*expressions: Column expressions to include in the index. The expressions are normally instances of :class:`.Column`, but may also be arbitrary SQL expressions which ultmately refer to a :class:`.Column`. - .. versionadded:: 0.8 :class:`.Index` supports SQL expressions as - well as plain columns. -======= - :param \*expressions: Column or SQL expressions. ->>>>>>> master - :param unique: Defaults to False: create a unique index. |