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.

23 lines
524 B
Markdown

# 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
```