Skip to content

Commit

Permalink
add mediumint type
Browse files Browse the repository at this point in the history
  • Loading branch information
snowlyg committed May 25, 2021
1 parent 41d2f48 commit cddebd9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/view/cnf/def.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit cddebd9

Please sign in to comment.