Fix query error when no schema name was provided

This commit is contained in:
Nise Void 2017-07-07 12:35:46 +02:00
parent 0ebacc4842
commit 42f58417e9
1 changed files with 5 additions and 3 deletions

View File

@ -87,9 +87,11 @@ func Migrate(db *sql.DB, version int, o Options, asset AssetFunc) error {
}
}
_, err = tx.Exec(`SET search_path TO ` + o.Schema + `,public`)
if err != nil {
return err
if o.Schema != `` {
_, err = tx.Exec(`SET search_path TO ` + o.Schema + `,public`)
if err != nil {
return err
}
}
err = tx.Commit()