fix: display bigint in string format

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
This commit is contained in:
Wing-Kam Wong
2022-02-11 19:05:13 +08:00
parent 0efe569e70
commit 8480271e35
6 changed files with 6 additions and 10 deletions

View File

@@ -842,7 +842,6 @@ export class MysqlUi {
case 'int':
case 'smallint':
case 'mediumint':
case 'bigint':
case 'bit':
return 'integer'
@@ -897,6 +896,7 @@ export class MysqlUi {
case 'set':
return 'set'
case 'bigint':
case 'geometry':
case 'point':
case 'linestring':