mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 12:17:19 +00:00
fix: display bigint in string format
Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
This commit is contained in:
@@ -921,16 +921,14 @@ export class MssqlUi {
|
||||
|
||||
static getAbstractType(col) {
|
||||
switch ((col.dt || col.dt).toLowerCase()) {
|
||||
case 'bigint':
|
||||
case 'smallint':
|
||||
case 'bit':
|
||||
case 'tinyint':
|
||||
case 'int':
|
||||
return 'integer'
|
||||
|
||||
case 'bigint':
|
||||
case 'binary':
|
||||
return 'string'
|
||||
|
||||
case 'char':
|
||||
return 'string'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user