DBSTRING=postgres://username:password@host:port/dbname?sslmode=disable
go run ./cmd/main.go -dir migrations create table_payment_transactions go
go run ./cmd/main.go -dir migrations postgres '[DBSTRING]' version
go run ./cmd/main.go -dir migrations postgres '[DBSTRING]' up
go run ./cmd/main.go -dir migrations postgres '[DBSTRING]' up-to 20221017133145
go run ./cmd/main.go -dir migrations postgres '[DBSTRING]' down
go build -o goose ./cmd/main.go