1
0
Fork 0
mirror of synced 2024-07-15 03:05:57 +12:00

Correctly parsing the bit type in ms-sql to boolean.

This commit is contained in:
mike12345567 2022-03-03 17:20:21 +00:00
parent 31f3956bfb
commit 9f6635045a

View file

@ -18,6 +18,7 @@ const SQL_TYPE_MAP = {
timestamp: FieldTypes.DATETIME,
time: FieldTypes.DATETIME,
boolean: FieldTypes.BOOLEAN,
bit: FieldTypes.BOOLEAN,
json: FieldTypes.JSON,
date: FieldTypes.DATETIME,
blob: FieldTypes.LONGFORM,