diff options
Diffstat (limited to 'routers/install.go')
-rw-r--r-- | routers/install.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/routers/install.go b/routers/install.go index 06acb264..73b0cb17 100644 --- a/routers/install.go +++ b/routers/install.go @@ -81,9 +81,6 @@ func GlobalInit() { if models.EnableSQLite3 { log.Info("SQLite3 Supported") } - if models.EnableTiDB { - log.Info("TiDB Supported") - } if setting.SupportMiniWinService { log.Info("Builtin Windows Service Supported") } @@ -108,9 +105,6 @@ func InstallInit(ctx *context.Context) { if models.EnableSQLite3 { dbOpts = append(dbOpts, "SQLite3") } - if models.EnableTiDB { - dbOpts = append(dbOpts, "TiDB") - } ctx.Data["DbOptions"] = dbOpts } @@ -131,10 +125,6 @@ func Install(ctx *context.Context) { if models.EnableSQLite3 { ctx.Data["CurDbOption"] = "SQLite3" } - case "tidb": - if models.EnableTiDB { - ctx.Data["CurDbOption"] = "TiDB" - } } // Application general settings |