From 0961e22126e4c1e65c5e9d76b31adcc9eef22887 Mon Sep 17 00:00:00 2001 From: Jordan Wright Date: Mon, 25 May 2020 20:55:00 -0500 Subject: [PATCH] Removed unneeded print statement --- models/models.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/models/models.go b/models/models.go index 098973e2..3384aad5 100644 --- a/models/models.go +++ b/models/models.go @@ -7,7 +7,6 @@ import ( "fmt" "io" "io/ioutil" - "path/filepath" "time" "bitbucket.org/liamstask/goose/lib/goose" @@ -94,8 +93,6 @@ func Setup(c *config.Config) error { Env: "production", Driver: chooseDBDriver(conf.DBName, conf.DBPath), } - abs, _ := filepath.Abs(migrateConf.MigrationsDir) - fmt.Println(abs) // Get the latest possible migration latest, err := goose.GetMostRecentDBVersion(migrateConf.MigrationsDir) if err != nil {