Fixes #5599 - add jsonb field type mapping for postgres (#5611)

This commit is contained in:
mcarlson
2021-05-11 22:55:19 +03:00
committed by GitHub
parent 316ac9076b
commit 7531585ccd

View File

@@ -59,6 +59,7 @@ const localTypeMap: Record<string, { type: typeof types[number]; useTimezone?: b
// Postgres
json: { type: 'json' },
jsonb: { type: 'json' },
uuid: { type: 'uuid' },
int2: { type: 'integer' },
serial4: { type: 'integer' },