Merge pull request #39 from duffn/sql-subdirectories

Update CollectMigrations for subdirectories
pull/43/head
Vojtech Vitek 2017-05-06 13:26:03 -04:00 committed by GitHub
commit fbcec9931f
1 changed files with 1 additions and 1 deletions

View File

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