summaryrefslogtreecommitdiff
path: root/cmd/migrator/migrate/migrate.go
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-09 01:07:15 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-09 01:07:15 +0300
commit34ccc98a942098faefb5f4211b215ff9ccc7ad0e (patch)
tree7696ab4d7c8d9fb09c7e2575d482517f68824ae3 /cmd/migrator/migrate/migrate.go
Начальный
Diffstat (limited to 'cmd/migrator/migrate/migrate.go')
-rw-r--r--cmd/migrator/migrate/migrate.go31
1 files changed, 31 insertions, 0 deletions
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
+}