blob: d24e1a934160a21faccce98c6d9faacfb329a83b (
plain) (
tree)
|
|
package migrate
import (
"fmt"
"github.com/urfave/cli/v2"
"neonxp.ru/go/framework/cmd/app/migrator/migrator"
"neonxp.ru/go/framework/migrations"
)
func Migrate(c *cli.Context) error {
m, err := migrator.New(c, migrations.Migrations)
if err != nil {
return err
}
group, err := m.Migrate(c.Context)
if err != nil {
return err
}
if group.ID == 0 {
fmt.Printf("there are no new migrations to run\n")
return nil
}
fmt.Printf("migrated to %s\n", group)
return nil
}
|