diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-04 21:02:35 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-04 21:02:35 -0400 |
commit | 1f65ac6679298c7f18e8ff3b13d6694e357ed5d5 (patch) | |
tree | 9e14201ee927efd5f76339127358b78019945e54 /lib/sqlalchemy/schema.py | |
parent | b42cbed42765cd00962868c248cee4b1b448c948 (diff) | |
download | sqlalchemy-1f65ac6679298c7f18e8ff3b13d6694e357ed5d5.tar.gz |
roughly the finished product.
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index b01d815a9..98472f9f1 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -118,7 +118,7 @@ class Table(SchemaItem, expression.TableClause): :param \*args: Additional positional arguments are used primarily to add the list of :class:`Column` objects contained within this table. Similar to the style of a CREATE TABLE statement, other - :class:`SchemaItem` constructs may be added here, including + :class:`.SchemaItem` constructs may be added here, including :class:`PrimaryKeyConstraint`, and :class:`ForeignKeyConstraint`. :param autoload: Defaults to False: the Columns for this table should @@ -526,7 +526,7 @@ class Column(SchemaItem, expression.ColumnClause): may not function in all cases. :param \*args: Additional positional arguments include various - :class:`SchemaItem` derived constructs which will be applied + :class:`.SchemaItem` derived constructs which will be applied as options to the column. These include instances of :class:`Constraint`, :class:`ForeignKey`, :class:`ColumnDefault`, and :class:`Sequence`. In some cases an equivalent keyword |