jackc / tern

The SQL Fan's Migrator
MIT License
850 stars 66 forks source link

Fix FindMigrations panic with missing migrations #81

Closed bluekeyes closed 1 year ago

bluekeyes commented 1 year ago

If a migration was missing and the directory contained only valid migration files, FindMigrations would panic with an index out of range error instead of returning an error indicating a missing migration.

I think this was missed in #65 because the test data included a non-migration file that added an extra element to the foundMigrations slice.

jackc commented 1 year ago

Thanks!