From e500a875298fd8f2add675ca4be261bc331ec14e Mon Sep 17 00:00:00 2001 From: Ming Fang Date: Sun, 24 Dec 2023 07:18:25 -0500 Subject: [PATCH] feat: add type 'TIMESTAMP WITH TIME ZONE' field type (#234) --- packages/core/src/util/js-type.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/util/js-type.js b/packages/core/src/util/js-type.js index 0afb3d2f..25d79e4f 100644 --- a/packages/core/src/util/js-type.js +++ b/packages/core/src/util/js-type.js @@ -17,6 +17,7 @@ export function jsType(type) { case 'DATE': case 'TIMESTAMP': case 'TIMESTAMPTZ': + case 'TIMESTAMP WITH TIME ZONE': case 'TIME': return 'date'; case 'BOOLEAN':