migrate: refactor sorting of migrations out of the collection routine

pull/2/head
Liam Staskawicz 2012-12-25 12:50:30 -08:00
parent 8c4171074b
commit ef4602b5e8
1 changed files with 2 additions and 4 deletions

View File

@ -55,6 +55,8 @@ func runMigrations(conf *DBConf, migrationsDir string, target int) {
return
}
mm.Sort(current < target)
fmt.Printf("goose: migrating db environment '%v', current version: %d, target: %d\n",
conf.Env, current, target)
@ -108,10 +110,6 @@ func collectMigrations(dirpath string, current, target int) (mm *MigrationMap, e
return nil
})
if len(mm.Versions) > 0 {
mm.Sort(current < target)
}
return mm, nil
}