adds handling for mssql timestamp cols
This commit is contained in:
parent
5543648dbd
commit
22ebb24e82
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user