fixes
This commit is contained in:
@ -34,6 +34,9 @@ for table in schema["tables"]:
|
||||
elif column["sqltype"] == 'timestamp':
|
||||
column["apitype"] = 'string'
|
||||
column["jstype"] = 'string'
|
||||
elif column["sqltype"] == 'boolean':
|
||||
column["apitype"] = 'boolean'
|
||||
column["jstype"] = 'boolean'
|
||||
elif column["sqltype"].startswith('varchar'):
|
||||
column["apitype"] = 'string'
|
||||
column["jstype"] = 'string'
|
||||
|
Reference in New Issue
Block a user