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 (
2019-12-15 09:51:28 +00:00
"context"
2021-09-19 19:49:59 +08:00
"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
}
2021-06-27 01:56:58 +01: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-14 02:24:57 +01:00
log . Info ( "Configuration file: %s" , setting . CustomConf )
2018-10-31 05:14:42 +02:00
2021-10-30 22:32:11 +08: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
}