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

View File

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