Merged in shuhaowu/goose/migration-on-db-obj (pull request #35)

Function to migrate specific database.
pull/2/head
Parker Moore 2015-01-15 15:40:39 -08:00
commit 8488cc47d9
1 changed files with 5 additions and 0 deletions

View File

@ -56,6 +56,11 @@ func RunMigrations(conf *DBConf, migrationsDir string, target int64) (err error)
}
defer db.Close()
return RunMigrationsOnDb(conf, migrationsDir, target, db)
}
// Runs migration on a specific database instance.
func RunMigrationsOnDb(conf *DBConf, migrationsDir string, target int64, db *sql.DB) (err error) {
current, err := EnsureDBVersion(conf, db)
if err != nil {
return err