Update init.go

pull/2560/head
Anye 3 months ago committed by GitHub
parent fec549f5ec
commit 7beb8364ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save