add tinyint support

add tinyint support
This commit is contained in:
谢小军
2020-02-28 20:28:15 +08:00
parent b7c5b5b6c7
commit bfb54391ac
2 changed files with 8 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ var TypeMysqlDicMp = map[string]string{
"date": "time.Time",
"datetime": "time.Time",
"bit(1)": "int8",
"tinyint": "int8",
"tinyint(1)": "int8",
"tinyint(1) unsigned": "int8",
"json": "string",

File diff suppressed because one or more lines are too long