diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-10-12 02:52:22 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-10-12 02:53:52 +0300 |
commit | d05ea66f4bbcf0cc5c8908f3435c68de1b070fa1 (patch) | |
tree | 7c7a769206646f2b81a0eda0680f0be5033a4197 /cmd/app/migrator/migrate/migrate.go |
Начальная версияv0.0.1
Diffstat (limited to 'cmd/app/migrator/migrate/migrate.go')
-rw-r--r-- | cmd/app/migrator/migrate/migrate.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cmd/app/migrator/migrate/migrate.go b/cmd/app/migrator/migrate/migrate.go new file mode 100644 index 0000000..0cef9b4 --- /dev/null +++ b/cmd/app/migrator/migrate/migrate.go @@ -0,0 +1,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 +} |