Browse Source

Merge pull request #2715 from mslourens/extend_postgres_data_types

Extend Postgres data type map
pull/4023/head
Martin McKeaveney 5 years ago
committed by GitHub
parent
commit
ec30a0b0b0
  1. 3
      packages/server/src/integrations/postgres.ts

3
packages/server/src/integrations/postgres.ts

@ -84,10 +84,13 @@ module PostgresModule {
bigint: FieldTypes.NUMBER,
decimal: FieldTypes.NUMBER,
smallint: FieldTypes.NUMBER,
real: FieldTypes.NUMBER,
"double precision": FieldTypes.NUMBER,
timestamp: FieldTypes.DATETIME,
time: FieldTypes.DATETIME,
boolean: FieldTypes.BOOLEAN,
json: FieldTypes.JSON,
date: FieldTypes.DATETIME,
}
async function internalQuery(client: any, query: SqlQuery) {

Loading…
Cancel
Save