rename collectMigrations to CollectMigrations

pull/22/head
mmatczuk 2017-03-27 10:19:04 +02:00
parent 221ff41793
commit 1e8921d41c
5 changed files with 9 additions and 9 deletions

View File

@ -11,7 +11,7 @@ func Down(db *sql.DB, dir string) error {
return err
}
migrations, err := collectMigrations(dir, minVersion, maxVersion)
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}
@ -25,7 +25,7 @@ func Down(db *sql.DB, dir string) error {
}
func DownTo(db *sql.DB, dir string, version int64) error {
migrations, err := collectMigrations(dir, minVersion, maxVersion)
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}

View File

@ -85,9 +85,9 @@ func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
goMigrations = append(goMigrations, migration)
}
// collect all the valid looking migration scripts in the
// migrations folder and go func registry, and key them by version
func collectMigrations(dirpath string, current, target int64) (Migrations, error) {
// CollectMigrations returns all the valid looking migration scripts in the
// migrations folder and go func registry, and key them by version.
func CollectMigrations(dirpath string, current, target int64) (Migrations, error) {
var migrations Migrations
// extract the numeric component of each migration,

View File

@ -10,7 +10,7 @@ func Redo(db *sql.DB, dir string) error {
return err
}
migrations, err := collectMigrations(dir, minVersion, maxVersion)
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}

View File

@ -10,7 +10,7 @@ import (
func Status(db *sql.DB, dir string) error {
// collect all migrations
migrations, err := collectMigrations(dir, minVersion, maxVersion)
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}

4
up.go
View File

@ -6,7 +6,7 @@ import (
)
func UpTo(db *sql.DB, dir string, version int64) error {
migrations, err := collectMigrations(dir, minVersion, version)
migrations, err := CollectMigrations(dir, minVersion, version)
if err != nil {
return err
}
@ -39,7 +39,7 @@ func Up(db *sql.DB, dir string) error {
}
func UpByOne(db *sql.DB, dir string) error {
migrations, err := collectMigrations(dir, minVersion, maxVersion)
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}