Browse Source

#1626 default db_type

pull/1629/head
Unknwon 9 years ago
parent
commit
47df562ced
  1. 8
      routers/install.go

8
routers/install.go

@ -104,10 +104,14 @@ func Install(ctx *middleware.Context) {
form.DbName = models.DbCfg.Name
form.DbPath = models.DbCfg.Path
ctx.Data["CurDbOption"] = "MySQL"
switch models.DbCfg.Type {
case "postgres":
ctx.Data["CurDbOption"] = "PostgreSQL"
case "sqlite3":
if models.EnableSQLite3 {
ctx.Data["CurDbOption"] = "SQLite3" // Default when enabled.
} else {
ctx.Data["CurDbOption"] = "MySQL"
}
}
// Application general settings

Loading…
Cancel
Save