diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-12-09 04:02:36 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-12-09 04:02:36 +0000 |
| commit | 499e07991ef09dbddbcfc564ffd74f8c4d8d7865 (patch) | |
| tree | 91c8e24d32aed000a88fa371a286464704f1a726 /lib | |
| parent | f279e2b1f24bd6efc7542707707ea9724f679e65 (diff) | |
| download | sqlalchemy-499e07991ef09dbddbcfc564ffd74f8c4d8d7865.tar.gz | |
added SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sqlalchemy/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index eddb5d306..ad7868b9b 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -6,7 +6,7 @@ __all__ = [ 'TypeEngine', 'TypeDecorator', 'NullTypeEngine', 'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'TEXT', 'FLOAT', 'DECIMAL', - 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB', 'BOOLEAN', 'String', 'Integer', 'Smallinteger', + 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB', 'BOOLEAN', 'String', 'Integer', 'SmallInteger','Smallinteger', 'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'Binary', 'Boolean', 'Unicode', 'PickleType', 'NULLTYPE', 'SMALLINT', 'DATE', 'TIME' ] |
