diff --git a/src/main/libs/clients/SQLiteClient.ts b/src/main/libs/clients/SQLiteClient.ts index f775aea7..eff98062 100644 --- a/src/main/libs/clients/SQLiteClient.ts +++ b/src/main/libs/clients/SQLiteClient.ts @@ -166,7 +166,7 @@ export class SQLiteClient extends BaseClient { type: type.trim(), schema: schema, table: table, - numPrecision: [...NUMBER, ...FLOAT].includes(type) ? length : null, + numLength: [...NUMBER, ...FLOAT].includes(type) ? length : null, datePrecision: null, charLength: ![...NUMBER, ...FLOAT].includes(type) ? length : null, nullable: !field.notnull,