Merge pull request #27 from evildao/master

tinyint等类型bool->int8
This commit is contained in:
xxj
2020-01-17 14:35:18 +08:00
committed by GitHub

View File

@@ -16,9 +16,9 @@ var TypeMysqlDicMp = map[string]string{
"char": "string",
"date": "time.Time",
"datetime": "time.Time",
"bit(1)": "bool",
"tinyint(1)": "bool",
"tinyint(1) unsigned": "bool",
"bit(1)": "int8",
"tinyint(1)": "int8",
"tinyint(1) unsigned": "int8",
"json": "string",
"text": "string",
"timestamp": "time.Time",