diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-23 19:03:43 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-23 19:03:43 -0400 |
commit | dff5e56e954fa3b0fd53c1e7ea5dccade738f005 (patch) | |
tree | ac69497972b2e5f3a49b4439f867e89edb5f6216 /lib/sqlalchemy/schema.py | |
parent | ff722f541f14ae37c41f921d17f9201ea14f809a (diff) | |
download | sqlalchemy-dff5e56e954fa3b0fd53c1e7ea5dccade738f005.tar.gz |
doc fixes
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 5730b3a37..5cfda7cf3 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -566,7 +566,8 @@ class Table(SchemaItem, expression.TableClause): def append_ddl_listener(self, event_name, listener): """Append a DDL event listener to this ``Table``. - Deprecated. See :class:`.DDLEvents`. + .. deprecated:: 0.7 + See :class:`.DDLEvents`. """ @@ -738,7 +739,6 @@ class Column(SchemaItem, expression.ColumnClause): object. .. versionchanged:: 0.9.0 - Support for propagation of type to a :class:`.Column` from its :class:`.ForeignKey` object has been improved and should be more reliable and timely. @@ -1508,7 +1508,6 @@ class ForeignKey(SchemaItem): is raised. .. versionchanged:: 0.9.0 - Foreign key target column resolution now occurs as soon as both the ForeignKey object and the remote Column to which it refers are both associated with the same MetaData object. @@ -2868,7 +2867,8 @@ class MetaData(SchemaItem): def append_ddl_listener(self, event_name, listener): """Append a DDL event listener to this ``MetaData``. - Deprecated. See :class:`.DDLEvents`. + .. deprecated:: 0.7 + See :class:`.DDLEvents`. """ def adapt_listener(target, connection, **kw): @@ -3298,7 +3298,8 @@ class DDL(DDLElement): SQL bind parameters are not available in DDL statements. :param on: - Deprecated. See :meth:`.DDLElement.execute_if`. + .. deprecated:: 0.7 + See :meth:`.DDLElement.execute_if`. Optional filtering criteria. May be a string, tuple or a callable predicate. If a string, it will be compared to the name of the |