sqlboiler/config.go
Patrick O'brien caf4cb97aa README
- function variations, query mods, query building sections
- remove useless toml tags
2016-08-31 15:10:30 +10:00

24 lines
452 B
Go

package main
// Config for the running of the commands
type Config struct {
DriverName string
PkgName string
OutFolder string
BaseDir string
ExcludeTables []string
NoHooks bool
NoAutoTimestamps bool
Postgres PostgresConfig
}
// PostgresConfig configures a postgres database
type PostgresConfig struct {
User string
Pass string
Host string
Port int
DBName string
SSLMode string
}