2026-06-17 09:39:07 -07:00
|
|
|
# Hanzo Golang Migrate
|
2026-03-11 10:31:22 -07:00
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
Go module: github.com/golang-migrate/migrate/v4
|
|
|
|
|
|
|
|
|
|
## Tech Stack
|
|
|
|
|
- **Language**: Go
|
|
|
|
|
|
|
|
|
|
## Build & Run
|
|
|
|
|
```bash
|
|
|
|
|
go build ./...
|
|
|
|
|
go test ./...
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Structure
|
|
|
|
|
```
|
|
|
|
|
golang-migrate/
|
|
|
|
|
CONTRIBUTING.md
|
|
|
|
|
Dockerfile
|
|
|
|
|
Dockerfile.circleci
|
|
|
|
|
Dockerfile.github-actions
|
|
|
|
|
FAQ.md
|
|
|
|
|
GETTING_STARTED.md
|
|
|
|
|
LICENSE
|
|
|
|
|
MIGRATIONS.md
|
|
|
|
|
Makefile
|
|
|
|
|
README.md
|
|
|
|
|
SECURITY.md
|
|
|
|
|
cli/
|
|
|
|
|
cmd/
|
|
|
|
|
database/
|
|
|
|
|
dktesting/
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Key Files
|
|
|
|
|
- `README.md` -- Project documentation
|
|
|
|
|
- `go.mod` -- Go module definition
|
|
|
|
|
- `Makefile` -- Build automation
|
|
|
|
|
- `Dockerfile` -- Container build
|