Postgres: Specify public schema for schema_migrations table (#52)

This commit is contained in:
Adrian Macneil 2018-09-03 21:33:19 -07:00 committed by GitHub
parent 7603e83f0e
commit 0eabb5dc87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

View file

@ -17,7 +17,7 @@ func main() {
app := NewApp()
err := app.Run(os.Args)
if err != nil {
fmt.Fprintf(os.Stderr, "Error: %s\n", err)
_, _ = fmt.Fprintf(os.Stderr, "Error: %s\n", err)
os.Exit(1)
}
}