Add up-by-one goose command

pull/4/head
Vojtech Vitek (V-Teq) 2016-06-20 15:24:25 -04:00
parent 48cee63cc9
commit 1a51ec2e96
3 changed files with 49 additions and 0 deletions

View File

@ -11,6 +11,10 @@ func Run(command string, db *sql.DB, dir string) error {
if err := Up(db, dir); err != nil {
return err
}
case "up-by-one":
if err := UpByOne(db, dir); err != nil {
return err
}
case "down":
if err := Down(db, dir); err != nil {
return err

View File

@ -17,6 +17,7 @@ import (
var (
ErrNoPreviousVersion = errors.New("no previous version found")
ErrNoNextVersion = errors.New("no next version found")
goMigrations []*Migration
)
@ -56,6 +57,11 @@ func RunMigrations(db *sql.DB, dir string, target int64) (err error) {
return err
}
if current == target {
fmt.Printf("goose: no migrations to run. current version: %d. target version: %d\n", current, target)
return nil
}
migrations, err := CollectMigrations(dir, current, target)
if err != nil {
return err
@ -322,6 +328,31 @@ func GetPreviousDBVersion(dirpath string, version int64) (previous int64, err er
return
}
func GetNextDBVersion(dirpath string, version int64) (next int64, err error) {
next = 9223372036854775807 // max(int64)
filepath.Walk(dirpath, func(name string, info os.FileInfo, walkerr error) error {
if !info.IsDir() {
if v, e := NumericComponent(name); e == nil {
if v < next && v > version {
next = v
}
}
}
return nil
})
if next == 9223372036854775807 {
next = version
err = ErrNoNextVersion
}
return
}
// helper to identify the most recent possible version
// within a folder of migration scripts
func GetMostRecentDBVersion(dirpath string) (version int64, err error) {

14
up.go
View File

@ -15,3 +15,17 @@ func Up(db *sql.DB, dir string) error {
}
return nil
}
func UpByOne(db *sql.DB, dir string) error {
current, err := GetDBVersion(db)
if err != nil {
return err
}
next, _ := GetNextDBVersion(dir, current)
if err = RunMigrations(db, dir, next); err != nil {
return err
}
return nil
}