Files
Atay-Makhzan/cmd/migrate.go
T

47 lines
1.2 KiB
Go
Raw Normal View History

2018-10-31 05:14:42 +02:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package cmd
import (
"context"
"code.gitea.io/gitea/models/db"
2018-10-31 05:14:42 +02:00
"code.gitea.io/gitea/models/migrations"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"github.com/urfave/cli"
)
// CmdMigrate represents the available migrate sub-command.
var CmdMigrate = cli.Command{
Name: "migrate",
Usage: "Migrate the database",
Description: "This is a command for migrating the database, so that you can run gitea admin create-user before starting the server.",
Action: runMigrate,
}
func runMigrate(ctx *cli.Context) error {
2021-11-07 11:11:27 +08:00
stdCtx, cancel := installSignals()
defer cancel()
if err := initDB(stdCtx); err != nil {
2018-10-31 05:14:42 +02:00
return err
}
log.Info("AppPath: %s", setting.AppPath)
log.Info("AppWorkPath: %s", setting.AppWorkPath)
log.Info("Custom path: %s", setting.CustomPath)
log.Info("Log path: %s", setting.LogRootPath)
2021-09-14 02:24:57 +01:00
log.Info("Configuration file: %s", setting.CustomConf)
2018-10-31 05:14:42 +02:00
if err := db.InitEngineWithMigration(context.Background(), migrations.Migrate); err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to initialize ORM engine: %v", err)
2018-10-31 05:14:42 +02:00
return err
}
return nil
}