aboutsummaryrefslogtreecommitdiff
path: root/cmd/app/migrator/migrate/rollback.go
blob: 415c7f6420f9b878977d54d3d5462d1e996fb411 (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"
	"neonxp.ru/go/framework/cmd/app/migrator/migrator"
	"neonxp.ru/go/framework/migrations"
)

func Rollback(c *cli.Context) error {
	m, err := migrator.New(c, migrations.Migrations)
	if err != nil {
		return err
	}

	group, err := m.Rollback(c.Context)
	if err != nil {
		return err
	}

	if group.ID == 0 {
		fmt.Printf("there are no groups to roll back\n")
		return nil
	}

	fmt.Printf("rolled back %s\n", group)

	return nil
}