修复sqlite数据库位置

This commit is contained in:
Minho 2017-06-05 12:23:01 +08:00
parent a7891ce709
commit 1d6f63972a

View File

@ -54,6 +54,9 @@ func RegisterDataBase() {
}
} else if adapter == "sqlite3" {
database := beego.AppConfig.String("db_database")
if strings.HasPrefix(database,"./") {
database = filepath.Join(WorkingDirectory,string(database[1:]))
}
dbPath := filepath.Dir(database)
os.MkdirAll(dbPath, 0777)