mirror of
https://github.com/therootcompany/golib.git
synced 2026-04-25 05:08:00 +00:00
ExecUp/ExecDown now take (ctx, Migration, sql string) instead of (ctx, Migration) with embedded Up/Down fields. Applied returns []Migration instead of []AppliedMigration. - pgmigrate, mymigrate, litemigrate, msmigrate: new interface, v1.0.2 dep - shmigrate: v1.0.2 dep, remove temporary replace directive - cmd/sql-migrate: v1.0.2 dep
18 lines
504 B
Modula-2
18 lines
504 B
Modula-2
module github.com/therootcompany/golib/database/sqlmigrate/msmigrate
|
|
|
|
go 1.26.1
|
|
|
|
require (
|
|
github.com/microsoft/go-mssqldb v1.9.8
|
|
github.com/therootcompany/golib/database/sqlmigrate v1.0.2
|
|
)
|
|
|
|
require (
|
|
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
|
|
github.com/golang-sql/sqlexp v0.1.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
golang.org/x/crypto v0.48.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
)
|