godfish
is a database migration manager, similar to the very good
dogfish
, but written in golang.
- use the native query language in the migration files, no other high-level DSLs
- interface with many DBs
- light on dependencies
- not terrible error messages
Make a CLI binary for the DB you want to use. This tool comes with some driver implementations. Build one like so:
make build-cassandra
make build-mysql
make build-postgres
make build-sqlite3
make build-sqlserver
From there you could move it to $GOPATH/bin
, move it to your project or
whatever else you need to do.
godfish help
godfish -h
godfish <command> -h
Configuration options are read from command line flags first. If those are not set, then it checks the configuration file.
Database connection parameters are always read from environment variables. Set:
DB_DSN=
Manually set path to db migration files.
godfish -files db/migrations <command>
Make your life easier by creating a configuration file by invoking godfish init
. This creates a file at .godfish.json
, where you can configure things.
Change the path to the configuration file.
mv .godfish.json foo.json
godfish -conf foo.json
cat .godfish.json
# { "path_to_files": "db/migrations" }
godfish create-migration -name alpha
# outputs:
# db/migrations/forward-20200128070010-alpha.sql
# db/migrations/reverse-20200128070010-alpha.sql
godfish create-migration -name bravo -reversible=false
# outputs:
# db/migrations/forward-20200128070106-bravo.sql
#
# ... write the sql in those files ...
#
# apply migrations
godfish migrate
# apply migrations to up a specific version
godfish migrate -version 20060102150405
# show status
godfish info
# apply a reverse migration
godfish rollback
# rollback and re-apply the last migration
godfish remigrate
# show build metadata
godfish version
godfish version -json
Here are some notable differences between dogfish
and godfish
:
Filenames:
- dogfish:
migrate-${date}-${name}.sql
, orrollback-${date}-${name}.sql
- godfish:
forward-${date}-${name}.sql
, orreverse-${date}-${name}.sql
Note, dogfish uses the words, "migrate" and "rollback" to describe the migration's direction whereas godfish uses "forward" and "reverse". They are the same in that they are two complementaries. This change has one trivial benefit, the pieces of metadata encoded into the filename naturally align:
cd /path/to/db/migrations && ls -1
forward-20191112050547-init_foos.sql
forward-20191127051242-add_bars.sql
forward-20191205031405-update_more_stuff.sql
reverse-20191112050547-init_foos.sql
reverse-20191127051242-add_bars.sql
reverse-20191205031405-update_more_stuff.sql
These are welcome. To get you started, the code has some documentation, a godoc page, at least one implementation of each interface and tests.
Comments line lengths should be limited to 80 characters wide. Try not to make source code lines too long. More lines is fine with the exception of declarations of exported identifiers; they should be on one line, otherwise the generated godoc looks weird. There are also tests, those should pass.
The GitHub Actions run a security scanner on all of the source code using
gosec. There should be no rule violations
here. The Makefile provides a convenience target if you want to run gosec
on
your development machine.
Docker and docker-compose are used to create environments and run the tests
against a live database. Each database has a separate configuration. All of this
lives in ci.Makefile
and the .ci/
directory.
Build environments and run tests
make -f ci.Makefile ci-cassandra3-up
make -f ci.Makefile ci-cassandra4-up
make -f ci.Makefile ci-sqlserver-up
make -f ci.Makefile ci-mariadb-up
make -f ci.Makefile ci-mysql57-up
make -f ci.Makefile ci-mysql8-up
make -f ci.Makefile ci-postgres14-up
make -f ci.Makefile ci-postgres15-up
make -f ci.Makefile ci-sqlite3-up
Teardown
make -f ci.Makefile ci-cassandra3-down
make -f ci.Makefile ci-cassandra4-down
make -f ci.Makefile ci-sqlserver-down
make -f ci.Makefile ci-mariadb-down
make -f ci.Makefile ci-mysql57-down
make -f ci.Makefile ci-mysql8-down
make -f ci.Makefile ci-postgres14-down
make -f ci.Makefile ci-postgres15-down
make -f ci.Makefile ci-sqlite3-down