2018-10-30 21:14:42 -06:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-10-30 21:14:42 -06:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-12-15 02:51:28 -07:00
|
|
|
"context"
|
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2018-10-30 21:14:42 -06: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-06 21:11:27 -06:00
|
|
|
stdCtx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := initDB(stdCtx); err != nil {
|
2018-10-30 21:14:42 -06:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-06-26 18:56:58 -06:00
|
|
|
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-13 19:24:57 -06:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2018-10-30 21:14:42 -06:00
|
|
|
|
2021-10-30 08:32:11 -06:00
|
|
|
if err := db.InitEngineWithMigration(context.Background(), migrations.Migrate); err != nil {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Fatal("Failed to initialize ORM engine: %v", err)
|
2018-10-30 21:14:42 -06:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|