migrate: fix off-by-one comparison, and print correct versions

pull/2/head
Liam Staskawicz 2012-12-23 17:59:36 -08:00
parent e3112d5a4f
commit 8af5b84677
2 changed files with 2 additions and 3 deletions

1
cmd.go
View File

@ -2,7 +2,6 @@ package main
import (
"flag"
// "fmt"
"os"
)

View File

@ -56,7 +56,7 @@ func runMigrations(conf *DBConf, migrationsDir string, target int) {
}
fmt.Printf("goose: migrating db configuration '%v', current version: %d, target: %d\n",
conf.Name, mm.Versions[0], mm.Versions[len(mm.Versions)-1])
conf.Name, current, target)
for _, v := range mm.Versions {
@ -127,7 +127,7 @@ func versionFilter(v, current, target int) bool {
}
if target < current {
return v <= current && v >= target
return v <= current && v > target
}
return false