blob: 0cef9b4c6b629557ba435528477a73bf94de050e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package migrate
import (
"fmt"
"github.com/urfave/cli/v2"
"go.neonxp.ru/framework/cmd/app/migrator/migrator"
"go.neonxp.ru/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
}
|