summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-12-09 04:02:36 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-12-09 04:02:36 +0000
commit499e07991ef09dbddbcfc564ffd74f8c4d8d7865 (patch)
tree91c8e24d32aed000a88fa371a286464704f1a726 /lib
parentf279e2b1f24bd6efc7542707707ea9724f679e65 (diff)
downloadsqlalchemy-499e07991ef09dbddbcfc564ffd74f8c4d8d7865.tar.gz
added SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....)
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/types.py2
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'
]