fix bug on formatTime
This commit is contained in:
parent
d52a762fba
commit
8079cad870
|
@ -1572,7 +1572,7 @@ func (engine *Engine) formatTime(tz *time.Location, sqlTypeName string, t time.T
|
||||||
} else if engine.dialect.DBType() == "sqlite3" {
|
} else if engine.dialect.DBType() == "sqlite3" {
|
||||||
v = t.UTC().Format("2006-01-02 15:04:05")
|
v = t.UTC().Format("2006-01-02 15:04:05")
|
||||||
} else {
|
} else {
|
||||||
v = t.Format("2006-01-02 15:04:05")
|
v = t.Format("2006-01-02 15:04:05.999")
|
||||||
}
|
}
|
||||||
case core.TimeStampz:
|
case core.TimeStampz:
|
||||||
if engine.dialect.DBType() == core.MSSQL {
|
if engine.dialect.DBType() == core.MSSQL {
|
||||||
|
|
Loading…
Reference in New Issue