Fix query error when no schema name was provided
This commit is contained in:
parent
0ebacc4842
commit
42f58417e9
1 changed files with 5 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue