add mediumint type

This commit is contained in:
snowlyg
2021-05-25 15:21:35 +08:00
parent 41d2f487a0
commit cddebd902f

View File

@@ -18,6 +18,8 @@ var TypeMysqlDicMp = map[string]string{
"int unsigned": "uint",
"bigint": "int64",
"bigint unsigned": "uint64",
"mediumint": "int32",
"mediumint unsigned": "uint32",
"varchar": "string",
"char": "string",
"date": "datatypes.Date",