mirror of https://github.com/pressly/goose.git
fixing panic when a transaction can't be open
Signed-off-by: Pichugin Dmitry <pichugin.dmitry.v@gmail.com>pull/174/head
parent
799fcfb84b
commit
cfa2c3979d
|
@ -23,7 +23,7 @@ func runSQLMigration(db *sql.DB, statements []string, useTx bool, v int64, direc
|
|||
|
||||
tx, err := db.Begin()
|
||||
if err != nil {
|
||||
errors.Wrap(err, "failed to begin transaction")
|
||||
return errors.Wrap(err, "failed to begin transaction")
|
||||
}
|
||||
|
||||
for _, query := range statements {
|
||||
|
|
Loading…
Reference in New Issue