photoprism/internal/commands/migrate.go
2020-02-18 23:42:51 +01:00

41 lines
804 B
Go

package commands
import (
"context"
"time"
"github.com/photoprism/photoprism/internal/config"
"github.com/urfave/cli"
)
// MigrateCommand is used to register the migrate cli command
var MigrateCommand = cli.Command{
Name: "migrate",
Usage: "Automatically initializes and migrates the database",
Action: migrateAction,
}
// migrateAction automatically migrates or initializes database
func migrateAction(ctx *cli.Context) error {
start := time.Now()
conf := config.NewConfig(ctx)
cctx, cancel := context.WithCancel(context.Background())
defer cancel()
if err := conf.Init(cctx); err != nil {
return err
}
log.Infoln("migrating database")
conf.MigrateDb()
elapsed := time.Since(start)
log.Infof("database migration completed in %s", elapsed)
conf.Shutdown()
return nil
}