Skip to content

Commit

Permalink
hotfix: case does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Mar 22, 2024
1 parent 984c9fd commit 834c48c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/sql-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export function convertSqliteType(

if (
type.indexOf("REAL") >= 0 ||
type.indexOf("DOUBLE") ||
type.indexOf("FLOAT")
type.indexOf("DOUBLE") >= 0 ||
type.indexOf("FLOAT") >= 0
)
return TableColumnDataType.REAL;

Expand Down

0 comments on commit 834c48c

Please sign in to comment.