adds handling for mssql timestamp cols

This commit is contained in:
Keenan Jaenicke 2018-02-15 14:41:39 -05:00
parent 5543648dbd
commit 22ebb24e82

View File

@ -130,6 +130,9 @@ export class MssqlDriver extends AbstractDriver {
case "datetime":
colInfo.ts_type = "Date";
break;
case "timestamp":
colInfo.ts_type = "Date";
break;
case "char":
colInfo.ts_type = "string";
colInfo.char_max_lenght =