diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-23 19:32:54 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-23 19:32:54 -0400 |
commit | 2f747e0ad2e53efec4dc6d050fbeef7f0544f632 (patch) | |
tree | 99d5a3dd3791744f214188369d146b47dd627466 /lib/sqlalchemy/schema.py | |
parent | dff5e56e954fa3b0fd53c1e7ea5dccade738f005 (diff) | |
download | sqlalchemy-2f747e0ad2e53efec4dc6d050fbeef7f0544f632.tar.gz |
docs
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 5cfda7cf3..ebcc9a7ed 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -730,7 +730,7 @@ class Column(SchemaItem, expression.ColumnClause): The ``type`` argument may be the second positional argument or specified by keyword. - If the ``type`` is ``None``, it will first default to the special + If the ``type`` is ``None`` or is omitted, it will first default to the special type :class:`.NullType`. If and when this :class:`.Column` is made to refer to another column using :class:`.ForeignKey` and/or :class:`.ForeignKeyConstraint`, the type of the remote-referenced |