feat: add import excel option in project

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2021-11-23 16:35:16 +05:30
parent a3b1b55c02
commit a4fd84779b
14 changed files with 90 additions and 44 deletions

View File

@@ -1630,13 +1630,13 @@ export class PgUi {
colProp.dt = 'character varying'
break
case 'DateTime':
colProp.dt = 'datetime'
colProp.dt = 'timestamp'
break
case 'CreateTime':
colProp.dt = 'datetime'
colProp.dt = 'timestamp'
break
case 'LastModifiedTime':
colProp.dt = 'datetime'
colProp.dt = 'timestamp'
break
case 'AutoNumber':
colProp.dt = 'int'
@@ -1761,7 +1761,7 @@ export class PgUi {
'float8',
'smallint',
'smallserial',
'numeric',
'numeric'
]
case 'Decimal':
@@ -1769,7 +1769,7 @@ export class PgUi {
'double precision',
'float4',
'float8',
'numeric',
'numeric'
]
case 'Currency':
@@ -1787,7 +1787,7 @@ export class PgUi {
'double precision',
'money', 'float4',
'float8',
'numeric',
'numeric'
]
case 'Percent':
@@ -1807,7 +1807,7 @@ export class PgUi {
'float8',
'smallint',
'smallserial',
'numeric',
'numeric'
]
case 'Duration':
@@ -1827,7 +1827,7 @@ export class PgUi {
'float8',
'smallint',
'smallserial',
'numeric',
'numeric'
]
case 'Rating':
@@ -1847,7 +1847,7 @@ export class PgUi {
'float8',
'smallint',
'smallserial',
'numeric',
'numeric'
]
case 'Formula':