ensure migration IDs are greater than zero

pull/2/head
Liam Staskawicz 2013-01-04 19:24:40 -10:00
parent 517e1701e2
commit 0b250b8511
1 changed files with 2 additions and 2 deletions

View File

@ -197,8 +197,8 @@ func numericComponent(name string) (int64, error) {
}
n, e := strconv.ParseInt(base[:idx], 10, 64)
if e == nil && n == 0 {
return 0, errors.New("0 is not a valid migration ID")
if e == nil && n <= 0 {
return 0, errors.New("migration IDs must be greater than zero")
}
return n, e