Browse Source

fix: dtxp drop max length

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/5730/head
mertmit 1 year ago
parent
commit
73a106e443
  1. 2
      packages/nocodb-sdk/src/lib/Api.ts
  2. 5
      packages/nocodb/src/schema/swagger.json

2
packages/nocodb-sdk/src/lib/Api.ts

@ -1603,7 +1603,7 @@ export interface NormalColumnRequestType {
/** Data Type Extra */
dtx?: StringOrNullType;
/** Data Type Extra Precision */
dtxp?: StringOrNullType | number;
dtxp?: string | number | null;
/** Data Type Extra Scale */
dtxs?: StringOrNullType | number;
/** Numeric Precision */

5
packages/nocodb/src/schema/swagger.json

@ -17834,10 +17834,13 @@
"dtxp": {
"oneOf": [
{
"$ref": "#/components/schemas/StringOrNull"
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Data Type Extra Precision"

Loading…
Cancel
Save