feat(db): add mariadb alias (#2560)

This commit is contained in:
Anye
2025-06-23 17:17:18 +08:00
committed by GitHub
parent b11188fa50
commit d1bbfd4bc4

View File

@ -28,6 +28,11 @@ func Init() error {
if confDBType == "sqlite3" {
confDBType = "sqlite"
}
// 兼容 "mariadb" 数据库
if confDBType == "mariadb" {
confDBType = "mysql"
}
switch confDBType {
case "UNSET", "sqlite":