go-pg-migrations
A Go package to help write migrations with go-pg/pg
.
Usage
Installation
$ go get github.com/robinjoseph08/go-pg-migrations
Running
To see how this package is intended to be used, you can look at the example
directory. All you need to do is have a main
package (e.g.
example
); call migrations.Run
with the directory you want the migration
files to be saved in (which will be the same directory of the main package, e.g.
example
), an instance of *pg.DB
, and os.Args
; and log any potential errors
that could be returned.
Once this has been set up, then you can use the create
, migrate
, rollback
,
help
commands like so:
$ go run example/*.go create create_users_table
Creating example/20180812001528_create_users_table.go...
$ go run example/*.go migrate
Running batch 1 with 1 migration(s)...
Finished running "20180812001528_create_users_table"
$ go run example/*.go rollback
Rolling back batch 1 with 1 migration(s)...
Finished rolling back "20180812001528_create_users_table"
$ go run example/*.go help
Usage:
go run example/*.go [command]
Commands:
create - create a new migration in example with the provided name
migrate - run any migrations that haven't been run yet
rollback - roll back the previous run batch of migrations
help - print this help text
Examples:
go run example/*.go create create_users_table
go run example/*.go migrate
go run example/*.go rollback
go run example/*.go help
While this works when you have the Go toolchain installed, there might be a
scenario where you have to run migrations and you don't have the toolchain
available (e.g. in a scratch
or alpine
Docker image deployed to production).
In that case, you should compile another binary (in addition to your actual
application) and copy it into the final image. This will include all of your
migrations and allow you to run it by overriding the command when running the
Docker container.
This would look something like this:
# Dockerfile
FROM golang:1.10.3 as build
RUN curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64
RUN chmod +x /usr/local/bin/dep
WORKDIR /go/src/github.com/sample/service
COPY Gopkg.toml Gopkg.toml
COPY Gopkg.lock Gopkg.lock
RUN dep ensure -vendor-only
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -installsuffix cgo -ldflags '-w -s' -o ./bin/serve ./cmd/serve
RUN CGO_ENABLED=0 GOOS=linux go build -installsuffix cgo -ldflags '-w -s' -o ./bin/migrations ./cmd/migrations
FROM alpine:3.7
RUN apk --no-cache add ca-certificates
COPY --from=build /go/src/github.com/sample/service/bin /bin
CMD ["serve"]
$ docker build -t service:latest .
$ docker run --rm service:latest migrations migrate
Why?
While go-pg has its own migrations
package, it leaves a bit to be desired.
Some additional features that this package supports:
- Complete migration diffing to determine which migrations still need to be run.
Since
go-pg/migrations
checks the current version of migrations and runs any
migrations after that, some migrations can be missed, especially when several
people are working on the same project.
- Timestamp-based prefixes to prevent two people creating a migration with the
same version on two separate branches. If the current version is 3, and more
than one person branches off and creates a new migration, all of them will be
version 4.
- The ability to run migrations in a transaction on a case-by-case basis. Most
of the time, running migrations within a transaction is desirable, so that if
it errs out within the "up" function, the whole migration is reverted. But
since some long-running migrations might have a statement with a relatively
exclusive lock, you might opt out of running that specific migration within a
transaction.
- A migration locking mechanism. This is to avoid two people (or an automated
deployment system) attempting to run migrations at the same time against the
same database, which could lead to undesired behavior.
- An expected workflow of how this package should be used within a project.
While
go-pg/migrations
has some recommendations and examples, this package
takes a more opinionated approach which makes it so you don't have to think
about it as much, and there's less code for you to write and maintain.
- Batch-level rollbacks. When there are multiple migration files run during the
same migration invocation, they are all grouped together into a "batch".
During rollbacks, each batch gets rolled back together. This tends to be more
desireable since this usually means the application is reverting back to a
previous release, so the database should be in the state expected for that
release.
Many of these features and expected behaviors come from using Knex.js
migrations in production for many years. This
project is heavily inspired by Knex to provide a robust and safe migration
experience.
go-pg
is a great and performant project, and hopefully, this makes it a little
better.