Fixes error on successful up

pull/11/head
Josh Fyne 2016-10-07 15:52:55 -04:00
parent cb330a2e11
commit 42766096ee
1 changed files with 1 additions and 0 deletions

1
up.go
View File

@ -21,6 +21,7 @@ func Up(db *sql.DB, dir string) error {
if err != nil {
if err == ErrNoNextVersion {
fmt.Printf("goose: no migrations to run. current version: %d\n", current)
return nil
}
return err
}