From ef4602b5e81ac902e40fecc2b957d5d9ac8326b2 Mon Sep 17 00:00:00 2001 From: Liam Staskawicz Date: Tue, 25 Dec 2012 12:50:30 -0800 Subject: [PATCH] migrate: refactor sorting of migrations out of the collection routine --- migrate.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/migrate.go b/migrate.go index e32703d..7cff9d6 100644 --- a/migrate.go +++ b/migrate.go @@ -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 }