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 5425bc78bf More useful notes 10 months ago
..
data More useful notes 10 months ago
migrations Down grade 10 months ago
README.md Finally making progress 10 months ago
go.mod Finally making progress 10 months ago
go.sum Finally making progress 10 months ago
main.go More useful notes 10 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