Skip to content

Commit f7e935a

Browse files
committed
fix: number should consider as INTEGER
1 parent 211f8ba commit f7e935a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/drivers/sqlite/sql-helper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export function convertSqliteType(
4949
if (type.includes("STRING")) return TableColumnDataType.TEXT;
5050

5151
if (type.includes("INT")) return TableColumnDataType.INTEGER;
52+
if (type.includes("NUMBER")) return TableColumnDataType.INTEGER;
5253

5354
if (type.includes("BLOB")) return TableColumnDataType.BLOB;
5455

0 commit comments

Comments
 (0)