tbls is a CI-Friendly tool for document a database, written in Go.
Key features of tbls are:
- Single binary
- Document in GitHub Friendly Markdown format
- CI-Friendly
Usage | Sample | Integration with CI tools | Installation | Database Support
$ tbls
tbls is a tool for document a database, written in Go.
Usage:
tbls [command]
Available Commands:
diff diff database and document
doc document a database
dot generate dot file
help Help about any command
version print tbls version
Flags:
-h, --help help for tbls
Use "tbls [command] --help" for more information about a command.tbls doc analyzes a database and generate document in GitHub Friendly Markdown format.
$ tbls doc postgres://user:pass@hostname:5432/dbname ./dbdocIf you can use Graphviz dot command, tbls doc generate ER diagram images at the same time.
NOTICE: If you are using a symbol such as
#<in database password, URL-encode the password
tbls diff shows the difference between database schema and generated document.
$ tbls diff postgres://user:pass@hostname:5432/dbname ./dbdocNotice: tbls diff shows the difference Markdown documents only.
- Commit document using
tbls doc. - Check document updates using
tbls diff
Set following code to your-ci-config.yml.
DIFF=`tbls diff postgres://user:pass@localhost:5432/testdb?sslmode=disable ./dbdoc` && if [ ! -z "$DIFF" ]; then echo "document does not match database." >&2 ; tbls diff postgres://user:pass@localhost:5432/testdb?sslmode=disable ./dbdoc; exit 1; fiMakefile sample is following
doc: ## Document database schema
tbls doc postgres://user:pass@localhost:5432/testdb?sslmode=disable ./dbdoc
testdoc: ## Test database schema document
$(eval DIFF := $(shell tbls diff postgres://user:pass@localhost:5432/testdb?sslmode=disable ./dbdoc))
@test -z "$(DIFF)" || (echo "document does not match database." && tbls diff postgres://user:pass@localhost:5432/testdb?sslmode=disable ./dbdoc && exit 1)Tips: If the order of the columns does not match, you can use the --sort option.
To add additional data to the schema, specify the yaml file with the --add option as follows
$ tbls diff mysql://user:pass@hostname:3306/dbname --add path/to/additional_data.yml ./dbdoc$ go get github.com/k1LoW/tblsor
$ brew install k1LoW/tbls/tbls- PostgreSQL
- MySQL
- SQLite