提交 aac4ff2d 编写于 作者: S songzhibin97

feat: 多数据库适配低版本迁移

上级 e3df65f3
......@@ -5,6 +5,8 @@ import (
"gorm.io/gorm"
)
const system = "system"
func DBList() {
dbMap := make(map[string]*gorm.DB)
for _, info := range global.GVA_CONFIG.DBList {
......@@ -20,5 +22,10 @@ func DBList() {
continue
}
}
// 做特殊判断,是否有迁移
// 适配低版本迁移多数据库版本
if sysDB, ok := dbMap[system]; ok {
global.GVA_DB = sysDB
}
global.GVA_DBList = dbMap
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册