TimezoneType should be Unicode, not CHAR

This commit is contained in:
Stephen J. Fuhry
2014-04-05 17:19:46 +00:00
parent 122f612326
commit be5487cdb1

View File

@@ -23,7 +23,7 @@ class TimezoneType(types.TypeDecorator, ScalarCoercible):
timezone = sa.Column(TimezoneType(backend='pytz'))
"""
impl = types.CHAR(50)
impl = types.Unicode(50)
python_type = None