(format) run go fmt in pkg

This commit is contained in:
huydx
2016-12-14 12:15:35 +09:00
committed by huydx
parent 63bf332023
commit adb441e5c8
12 changed files with 78 additions and 79 deletions

View File

@ -31,9 +31,9 @@ func (db *Mysql) AutoIncrStr() string {
func (db *Mysql) BooleanStr(value bool) string {
if value {
return "1"
}
return "0"
return "1"
}
return "0"
}
func (db *Mysql) SqlType(c *Column) string {