mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 15:26:40 +00:00
chore: decimal field type
This commit is contained in:
parent
04e0a4db50
commit
3f1e3baaef
@ -10,7 +10,7 @@ const postgres = {
|
||||
smallint: 'integer',
|
||||
integer: 'integer',
|
||||
bigint: 'bigInt',
|
||||
decimal: 'float',
|
||||
decimal: 'decimal',
|
||||
numeric: 'float',
|
||||
real: 'float',
|
||||
'double precision': 'float',
|
||||
@ -45,6 +45,7 @@ const mysql = {
|
||||
date: 'date',
|
||||
time: 'time',
|
||||
varchar: 'string',
|
||||
decimal: 'decimal',
|
||||
text: 'text',
|
||||
longtext: 'text',
|
||||
int: 'integer',
|
||||
|
Loading…
Reference in New Issue
Block a user