gitea/cmd/fix.go

44 lines
835 B
Go
Raw Normal View History

2014-04-29 20:23:43 -06:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-05-01 19:21:46 -06:00
package cmd
2014-04-29 20:23:43 -06:00
import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/gogits/gogs/models"
2014-05-25 18:11:25 -06:00
"github.com/gogits/gogs/modules/setting"
2014-04-29 20:23:43 -06:00
)
var CmdFix = cli.Command{
2014-05-04 22:55:17 -06:00
Name: "fix",
Usage: "This command for upgrade from old version",
Description: `Fix provide upgrade from old version`,
Action: runFix,
Flags: []cli.Flag{},
2014-04-29 20:23:43 -06:00
}
func runFix(k *cli.Context) {
2014-05-25 18:11:25 -06:00
workDir, _ := setting.WorkDir()
newLogger(workDir)
2014-04-29 20:23:43 -06:00
2014-05-25 18:11:25 -06:00
setting.NewConfigContext()
2014-04-29 20:23:43 -06:00
models.LoadModelsConfig()
if models.UseSQLite3 {
2014-05-25 18:11:25 -06:00
os.Chdir(workDir)
2014-04-29 20:23:43 -06:00
}
models.SetEngine()
err := models.Fix()
if err != nil {
fmt.Println(err)
} else {
fmt.Println("Fix successfully!")
}
}