fix: specify VARCHAR size when loading examples (#12186)

This commit is contained in:
Beto Dealmeida 2020-12-22 13:39:40 -08:00 committed by GitHub
parent 41fac6b0d9
commit 8e3f71df4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ JSON_KEYS = {"params", "template_params", "extra"}
type_map = {
"VARCHAR": String(),
"STRING": String(),
"VARCHAR": String(255),
"STRING": String(255),
"TEXT": Text(),
"BIGINT": BigInteger(),
"FLOAT": Float(),