update bun libraries to v1.2.5

This commit is contained in:
kim 2024-11-08 13:19:19 +00:00
commit 3d3e023439
79 changed files with 4542 additions and 1430 deletions

View file

@ -12,6 +12,8 @@ func (n Name) String() string {
return "mysql"
case MSSQL:
return "mssql"
case Oracle:
return "oracle"
default:
return "invalid"
}
@ -23,4 +25,5 @@ const (
SQLite
MySQL
MSSQL
Oracle
)