Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
4b97028908 | ||
|
015a331bc3 |
7
README.md
Normal file
7
README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# litemigrate
|
||||
|
||||
Small migration library for Sqlite3 databases using [modernc.org sqlite3](https://pkg.go.dev/modernc.org/sqlite)
|
||||
driver.
|
||||
|
||||
This was mainly written for my own purposes. Others are free to look at the code if they want,
|
||||
but I make no guarantees that it'll work or that it won't blow away your database. Use at your own risk.
|
1
go.mod
1
go.mod
|
@ -4,7 +4,6 @@ go 1.22.4
|
|||
|
||||
require (
|
||||
github.com/Southclaws/fault v0.8.1
|
||||
github.com/lmika/blogging-tools v0.0.0-20240630114557-8db2b3aa93e6
|
||||
github.com/lmika/gopkgs v0.0.0-20240408110817-a02f6fc67d1f
|
||||
github.com/stretchr/testify v1.9.0
|
||||
modernc.org/sqlite v1.33.1
|
||||
|
|
2
go.sum
2
go.sum
|
@ -10,8 +10,6 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
|||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||
github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k=
|
||||
github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
|
||||
github.com/lmika/blogging-tools v0.0.0-20240630114557-8db2b3aa93e6 h1:WHM70gRzPTKHSKm/wf2kp3HErXzMpmcqfkGjHlhtu1Y=
|
||||
github.com/lmika/blogging-tools v0.0.0-20240630114557-8db2b3aa93e6/go.mod h1:w4rGqiE0+/FDUNWiIhfPGSPfT948/9Yw+cja12zOb4o=
|
||||
github.com/lmika/gopkgs v0.0.0-20240408110817-a02f6fc67d1f h1:tz68Lhc1oR15HVz69IGbtdukdH0x70kBDEvvj5pTXyE=
|
||||
github.com/lmika/gopkgs v0.0.0-20240408110817-a02f6fc67d1f/go.mod h1:zHQvhjGXRro/Xp2C9dbC+ZUpE0gL4GYW75x1lk7hwzI=
|
||||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package migration
|
||||
package litemigrate
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package migration_test
|
||||
package litemigrate_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
"github.com/lmika/blogging-tools/providers/db/migration"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"lmika.dev/pkg/litemigrate"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
@ -20,7 +20,7 @@ func TestMigrator_MigrateUp(t *testing.T) {
|
|||
defer closeFn()
|
||||
|
||||
fileMigrated := make([]string, 0)
|
||||
migrator := migration.New(testMigration, db, migration.WithPreStepHook(func(filename string) {
|
||||
migrator := litemigrate.New(testMigration, db, litemigrate.WithPreStepHook(func(filename string) {
|
||||
fileMigrated = append(fileMigrated, filename)
|
||||
}))
|
||||
|
||||
|
|
Loading…
Reference in a new issue