type github.com/golang-migrate/migrate/v4/source.Migrations

12 uses

	github.com/golang-migrate/migrate/v4/source (current package)
		migration.go#L36: type Migrations struct {
		migration.go#L41: func NewMigrations() *Migrations {
		migration.go#L42: 	return &Migrations{
		migration.go#L48: func (i *Migrations) Append(m *Migration) (ok bool) {
		migration.go#L68: func (i *Migrations) buildIndex() {
		migration.go#L76: func (i *Migrations) First() (version uint, ok bool) {
		migration.go#L83: func (i *Migrations) Prev(version uint) (prevVersion uint, ok bool) {
		migration.go#L91: func (i *Migrations) Next(version uint) (nextVersion uint, ok bool) {
		migration.go#L99: func (i *Migrations) Up(version uint) (m *Migration, ok bool) {
		migration.go#L108: func (i *Migrations) Down(version uint) (m *Migration, ok bool) {
		migration.go#L117: func (i *Migrations) findPos(version uint) int {

	github.com/golang-migrate/migrate/v4/source/file
		file.go#L22: 	migrations *source.Migrations