diff --git a/templates/project/app/service/migrate/migrate.go.tpl b/templates/project/app/service/migrate/migrate.go.tpl new file mode 100644 index 0000000..ae80d02 --- /dev/null +++ b/templates/project/app/service/migrate/migrate.go.tpl @@ -0,0 +1,60 @@ +package migrate + +import ( + "context" + "database/sql" + + "{{.ModuleName}}/app/service" + "{{.ModuleName}}/database" + "{{.ModuleName}}/providers/postgres" + + "github.com/pressly/goose/v3" + log "github.com/sirupsen/logrus" + "github.com/spf13/cobra" + "go.ipao.vip/atom" + "go.ipao.vip/atom/container" + "go.uber.org/dig" +) + +func defaultProviders() container.Providers { + return service.Default(container.Providers{ + postgres.DefaultProvider(), + }...) +} + +func Command() atom.Option { + return atom.Command( + atom.Name("migrate"), + atom.Short("run migrations"), + atom.RunE(Serve), + atom.Providers(defaultProviders()), + atom.Example("migrate [up|up-by-one|up-to|create|down|down-to|fix|redo|reset|status|version]"), + ) +} + +type Service struct { + dig.In + + DB *sql.DB +} + +// migrate +func Serve(cmd *cobra.Command, args []string) error { + return container.Container.Invoke(func(ctx context.Context, svc Service) error { + if len(args) == 0 { + args = append(args, "up") + } + + if args[0] == "create" { + return nil + } + + action, args := args[0], args[1:] + log.Infof("migration action: %s args: %+v", action, args) + + goose.SetBaseFS(database.MigrationFS) + goose.SetTableName("migrations") + + return goose.RunContext(context.Background(), action, svc.DB, "migrations", args...) + }) +} diff --git a/templates/project/main.go.tpl b/templates/project/main.go.tpl index 7e059dc..cb4cefb 100755 --- a/templates/project/main.go.tpl +++ b/templates/project/main.go.tpl @@ -2,6 +2,7 @@ package main import ( "{{.ModuleName}}/app/service/http" + "{{.ModuleName}}/app/service/migrate" log "github.com/sirupsen/logrus" "go.ipao.vip/atom" @@ -25,6 +26,7 @@ func main() { opts := []atom.Option{ atom.Name("{{ .ProjectName }}"), http.Command(), + migrate.Command(), } if err := atom.Serve(opts...); err != nil {