voidwalker/sqlboiler.toml

13 lines
331 B
TOML
Raw Permalink Normal View History

# this file is used for generating the models, not for connecting to the db
# so username/password are the local dev login, not the production login
pkgname="model"
output="model"
[mysql]
blacklist=["gorp_migrations"]
dbname="voidwalker"
host="localhost"
port=3306
user="voidwalker"
pass="voidwalker"
sslmode="false"