c65e357e15
Apply BasePath via fs.Sub, route CLI through Provider API, return ErrPendingMigrations when auto-migrate is disabled, use DownTo for blank. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
1.0 KiB
Modula-2
33 lines
1.0 KiB
Modula-2
module gitea.auvem.com/go-toolkit/migrate
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
gitea.auvem.com/go-toolkit/app v0.0.0-20250530181559-231561c92698
|
|
gitea.auvem.com/go-toolkit/appcli v0.0.0-20250604221759-6b4196dbda59
|
|
gitea.auvem.com/go-toolkit/dbx v0.0.0-20250530232843-55cc3ffd8364
|
|
github.com/pressly/goose/v3 v3.24.3
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/urfave/cli/v3 v3.3.3
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-jet/jet/v2 v2.13.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/segmentio/ksuid v1.0.4 // indirect
|
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
gitea.auvem.com/go-toolkit/app => ../app
|
|
gitea.auvem.com/go-toolkit/appcli => ../appcli
|
|
gitea.auvem.com/go-toolkit/dbx => ../dbx
|
|
)
|