add db fix as well

pull/120/head
1vn 2018-10-30 16:51:07 -04:00
parent 45eeb19d7d
commit 286883adf5
2 changed files with 13 additions and 1 deletions

View File

@ -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
View File

@ -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()
}