fix: match postgresql type timestamptz

This commit is contained in:
zhuyasen
2025-11-07 20:01:37 +08:00
parent d1ede7dd64
commit d0557f8082

View File

@@ -80,7 +80,7 @@ func (field *PGField) getMysqlType() string {
}
case "text":
return "text"
case "timestamp":
case "timestamp", "timestamptz":
return "timestamp"
case "date":
return "date"