Files

44 lines
1.1 KiB
Go
Raw Permalink Normal View History

2018-10-31 05:14:42 +02:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2018-10-31 05:14:42 +02:00
package cmd
import (
"context"
"code.gitea.io/gitea/models/db"
2018-10-31 05:14:42 +02:00
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/services/versioned_migration"
2018-10-31 05:14:42 +02:00
2025-06-10 14:35:12 +02:00
"github.com/urfave/cli/v3"
2018-10-31 05:14:42 +02:00
)
func newMigrateCommand() *cli.Command {
return &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,
}
2018-10-31 05:14:42 +02:00
}
2025-06-10 14:35:12 +02:00
func runMigrate(ctx context.Context, c *cli.Command) error {
if err := initDB(ctx); 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.Log.RootPath)
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(), versioned_migration.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
}