Added decimal as supported dataType (#5547)

This commit is contained in:
Teddy 2022-06-22 12:01:36 +02:00 committed by GitHub
parent 2b25c299e5
commit 2b05f6a17a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -284,6 +284,7 @@ export const getDataTypeString = (dataType: string): string => {
case DataType.Bigint:
case DataType.Numeric:
case DataType.Tinyint:
case DataType.Decimal:
return PrimaryTableDataTypes.NUMERIC;
case DataType.Boolean:
case DataType.Enum: