fix: json/jsonb columns should not have type "string" in OpenAPI spec (#2203)

* Switch to no type for json/jsonb
This commit is contained in:
Ezequiel Alvarez
2022-06-03 22:19:16 -05:00
committed by Steve Chavez
parent 6876fbb0aa
commit 113c487db2
4 changed files with 52 additions and 21 deletions
+3 -1
View File
@@ -1807,7 +1807,9 @@ CREATE TABLE test.openapi_types(
"a_bigint" bigint,
"a_numeric" numeric,
"a_real" real,
"a_double_precision" double precision
"a_double_precision" double precision,
"a_json" json,
"a_jsonb" jsonb
);
CREATE TABLE test.openapi_defaults(