fix : percent type in postgres.

re #1129

Signed-off-by: Naveen MR <oof1lab@gmail.com>
This commit is contained in:
Naveen MR
2022-02-08 22:08:34 +00:00
parent 3c557e965e
commit dfa6249bd8
2 changed files with 2 additions and 2 deletions

View File

@@ -1609,7 +1609,7 @@ export class PgUi {
colProp.validate = { func: ['isCurrency'], args: [''], msg: ['Validation failed : Invalid Currency Format'] }
break
case 'Percent':
colProp.dt = 'double'
colProp.dt = 'float8'
break
case 'Duration':
colProp.dt = 'int8'