Merge branch 'master' into gofmt

pull/44/head
Nicholas Duffy 2017-05-08 10:58:07 -06:00
commit 5ee045e0f9
1 changed files with 4 additions and 1 deletions

View File

@ -106,7 +106,10 @@ func CollectMigrations(dirpath string, current, target int64) (Migrations, error
// extract the numeric component of each migration, // extract the numeric component of each migration,
// filter out any uninteresting files, // filter out any uninteresting files,
// and ensure we only have one file per migration version. // and ensure we only have one file per migration version.
sqlMigrations, err := filepath.Glob(dirpath + "/**/*.sql") sqlMigrations, err := filepath.Glob(dirpath + "/*.sql")
sqlMigrationsSubDirectories, err := filepath.Glob(dirpath + "/**/*.sql")
sqlMigrations = append(sqlMigrations, sqlMigrationsSubDirectories...)
if err != nil { if err != nil {
return nil, err return nil, err
} }