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-03-26 15:16:35 +01:00
committed by GitHub
parent a3c1d9977f
commit 799daa7556
5 changed files with 58 additions and 25 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(