diff options
author | Administrator <> | 2009-12-16 13:25:07 -0800 |
---|---|---|
committer | Administrator <> | 2009-12-16 13:25:07 -0800 |
commit | 671f219f35e4c0ccbe551c4cdd4ddf286d3b4626 (patch) | |
tree | fcda8263f246bdf503c830bd53713562e7a6c65c /adbh.py | |
parent | 60b6a742f49a9076c86556385d10f9984ad8e6a3 (diff) | |
download | logilab-common-671f219f35e4c0ccbe551c4cdd4ddf286d3b4626.tar.gz |
hack to work around the lack of a date col type in sql server
Diffstat (limited to 'adbh.py')
-rw-r--r-- | adbh.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -581,7 +581,7 @@ class _SqlServer2005FuncHelper(_GenericAdvFuncHelper): 'Float' : 'float', 'Decimal' : 'decimal', 'Boolean' : 'bit', - 'Date' : 'datetime', + 'Date' : 'smalldatetime', 'Time' : 'time', 'Datetime' : 'datetime', 'Interval' : 'interval', |