diff --git a/server/postgres/src/utils.ts b/server/postgres/src/utils.ts index e4a5679e5a..675f04adda 100644 --- a/server/postgres/src/utils.ts +++ b/server/postgres/src/utils.ts @@ -307,9 +307,6 @@ export function inferType (val: any): string { } } if (typeof val === 'object') { - if (val == null) { - return '' - } if (val instanceof Date) { return '::text' }