Browse Source

feat: add jsonb db type for JSON in pg

pull/2492/head
sine 2 years ago
parent
commit
7f85b82b7d
  1. 2
      packages/nocodb-sdk/src/lib/sqlUi/PgUi.ts

2
packages/nocodb-sdk/src/lib/sqlUi/PgUi.ts

@ -1740,7 +1740,7 @@ export class PgUi {
return ['json', 'char', 'character', 'character varying', 'text'];
case 'JSON':
return ['json', 'text'];
return ['json', 'jsonb', 'text'];
case 'Checkbox':
return [
'bit',

Loading…
Cancel
Save