mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 16:57:08 +02:00
remove extra }
This commit is contained in:
parent
8f0718e4ff
commit
9a99f7cdeb
|
|
@ -412,7 +412,7 @@ export function resolvePath(
|
|||
return `CAST(${base} as ${dbType.startsWith('sqlite') ? dataTableColumnTypeToSql('boolean', dbType) : 'SIGNED'})`;
|
||||
}
|
||||
if (typeof value === 'string') {
|
||||
return `CAST(${base} AS ${dbType.startsWith('sqlite') ? dataTableColumnTypeToSql('string', dbType) : 'CHAR'}})`;
|
||||
return `CAST(${base} AS ${dbType.startsWith('sqlite') ? dataTableColumnTypeToSql('string', dbType) : 'CHAR'})`;
|
||||
}
|
||||
// return `CAST(${base} AS ${dataTableColumnTypeToSql('string', dbType)})`;
|
||||
return base;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user