SQLBoiler is a tool to generate a Go ORM tailored to your database schema.
Find a file
Patrick O'brien b43f9c63d8 Struct generation complete, pipes to stdout
* Database driver config & flag complete
* Table flag complete, will use all tables if non specified
2016-02-23 18:27:32 +10:00
cmds Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
dbdrivers Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
templates Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
.gitignore Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
LICENSE Initial commit 2016-02-21 16:18:25 +10:00
main.go Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
README.md Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00
sqlboiler Struct generation complete, pipes to stdout 2016-02-23 18:27:32 +10:00

sqlboiler

SQL Boiler generates boilerplate structs and statements

Create a file named config.toml in the root sqlboiler directory. An example config:

[postgres] host="localhost" port=5432 user="username" pass="password" dbname="database"