mirror of https://github.com/pressly/goose.git
add db fix as well
parent
45eeb19d7d
commit
286883adf5
|
@ -10,6 +10,7 @@ import (
|
|||
type SQLDialect interface {
|
||||
createVersionTableSQL() string // sql string to create the db version table
|
||||
insertVersionSQL() string // sql string to insert the initial version table row
|
||||
updateVersionSQL() string // sql string to update version
|
||||
dbVersionQuery(db *sql.DB) (*sql.Rows, error)
|
||||
}
|
||||
|
||||
|
|
13
fix.go
13
fix.go
|
@ -29,6 +29,12 @@ func Fix(db *sql.DB, dir string) error {
|
|||
version = last.Version + 1
|
||||
}
|
||||
|
||||
// fix db table as well
|
||||
tx, err := db.Begin()
|
||||
if err != nil {
|
||||
log.Fatal("db.Begin: ", err)
|
||||
}
|
||||
|
||||
// fix filenames by replacing timestamps with sequential versions
|
||||
for _, tsm := range tsMigrations {
|
||||
oldPath := tsm.Source
|
||||
|
@ -38,8 +44,13 @@ func Fix(db *sql.DB, dir string) error {
|
|||
return err
|
||||
}
|
||||
|
||||
if _, err := tx.Exec(GetDialect().updateVersionSQL(), version, tsm.Version); err != nil {
|
||||
tx.Rollback()
|
||||
return err
|
||||
}
|
||||
|
||||
version++
|
||||
}
|
||||
|
||||
return nil
|
||||
return tx.Commit()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue