sqlboiler/config.go

30 lines
577 B
Go
Raw Normal View History

package main
// Config for the running of the commands
type Config struct {
DriverName string
Schema string
PkgName string
OutFolder string
BaseDir string
2016-09-05 16:41:12 +02:00
WhitelistTables []string
ExcludeTables []string
2016-09-04 15:44:54 +02:00
Tags []string
2016-09-04 12:27:19 +02:00
Debug bool
NoTests bool
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
}