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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
package migrator
import (
"fmt"
"strings"
"github.com/urfave/cli/v2"
"go.neonxp.ru/framework/cmd/app/migrator/migrate"
"go.neonxp.ru/framework/cmd/app/migrator/migrator"
"go.neonxp.ru/framework/migrations"
)
func Migrator() *cli.Command {
return &cli.Command{
Name: "db",
Usage: "manage database migrations",
Subcommands: []*cli.Command{
{
Name: "init",
Usage: "create migration tables",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Value: "./config/config.yaml",
Usage: "config",
},
},
Action: migrate.Init,
},
{
Name: "migrate",
Usage: "migrate database",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Value: "./config/config.yaml",
Usage: "config",
},
},
Action: migrate.Migrate,
},
{
Name: "rollback",
Usage: "rollback the last migration group",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Value: "./config/config.yaml",
Usage: "config",
},
},
Action: migrate.Rollback,
},
{
Name: "create",
Usage: "create migration",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Value: "./config/config.yaml",
Usage: "config",
},
},
Action: func(c *cli.Context) error {
migrator, err := migrator.New(c, migrations.Migrations)
if err != nil {
return err
}
name := strings.Join(c.Args().Slice(), "_")
mf, err := migrator.CreateGoMigration(c.Context, name)
if err != nil {
return err
}
fmt.Printf("created migration %s (%s)\n", mf.Name, mf.Path)
return nil
},
},
},
}
}
|