Skip to content

Commit

Permalink
change tinyint(1) to bool
Browse files Browse the repository at this point in the history
change tinyint(1) to bool
  • Loading branch information
xxjwxc committed May 27, 2020
1 parent cb7e9d7 commit ef08ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/view/cnf/def.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ var TypeMysqlDicMp = map[string]string{
"bit(1)": "int8",
"tinyint": "int8",
"tinyint unsigned": "uint8",
"tinyint(1)": "int8",
"tinyint(1) unsigned": "int8",
"tinyint(1)": "bool",
"tinyint(1) unsigned": "bool",
"json": "string",
"text": "string",
"timestamp": "time.Time",
Expand Down

0 comments on commit ef08ccd

Please sign in to comment.