From 34ccc98a942098faefb5f4211b215ff9ccc7ad0e Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 9 Dec 2024 01:07:15 +0300 Subject: Начальный MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/migrator/migrate/migrate.go | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 cmd/migrator/migrate/migrate.go (limited to 'cmd/migrator/migrate/migrate.go') diff --git a/cmd/migrator/migrate/migrate.go b/cmd/migrator/migrate/migrate.go new file mode 100644 index 0000000..6245879 --- /dev/null +++ b/cmd/migrator/migrate/migrate.go @@ -0,0 +1,31 @@ +package migrate + +import ( + "context" + "fmt" + + "git.neonxp.ru/neonxp/guessr/cmd/migrator/migrator" + "git.neonxp.ru/neonxp/guessr/migrations" + "github.com/urfave/cli/v3" +) + +func Migrate(ctx context.Context, c *cli.Command) error { + m, err := migrator.New(c, migrations.Migrations) + if err != nil { + return err + } + + group, err := m.Migrate(ctx) + 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 +} -- cgit v1.2.3