migrate: validate that given migrations don't have ID 0

pull/2/head
Liam Staskawicz 2012-12-23 17:51:49 -08:00
parent ce29ebdf7e
commit e3112d5a4f
1 changed files with 7 additions and 1 deletions

View File

@ -189,7 +189,13 @@ func numericComponent(name string) (int, error) {
if idx < 0 {
return 0, errors.New("no separator found")
}
return strconv.Atoi(base[:idx])
n, e := strconv.Atoi(base[:idx])
if e == nil && n == 0 {
return 0, errors.New("0 is not a valid migration ID")
}
return n, e
}
// retrieve the current version for this DB.