remove obsolete version comparison

pull/2/head
Liam Staskawicz 2013-01-06 22:12:39 -08:00
parent edaa9e3049
commit 85a0c8b565
1 changed files with 0 additions and 5 deletions

View File

@ -120,11 +120,6 @@ func collectMigrations(dirpath string, current, target int64) (mm *MigrationMap,
func versionFilter(v, current, target int64) bool {
// special case - default target value
if target < 0 {
return v > current
}
if target > current {
return v > current && v <= target
}