You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drew Bednar 6a1469fc73 | 5 months ago | |
---|---|---|
.. | ||
data | 5 months ago | |
migrations | 6 months ago | |
README.md | 6 months ago | |
go.mod | 6 months ago | |
go.sum | 6 months ago | |
main.go | 5 months ago |
README.md
Regular SQLite in Go
Install the Migrations Tool
This will in stall the migrate tool for our system.
go install -tags 'sqlite3' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
You could also use golang-migrate as a library and migrate your DB in code. For that you would need to install that package as part of your module dependencies.
go get github.com/mattn/go-sqlite3
Running Migrations
Using the CLI
migrate -database sqlite3://./data/trysqlite.db -path ./migrations