(db *sql.DB, dialect string)
| 819 | } |
| 820 | |
| 821 | func GetMigrationRecords(db *sql.DB, dialect string) ([]*MigrationRecord, error) { |
| 822 | return migSet.GetMigrationRecords(db, dialect) |
| 823 | } |
| 824 | |
| 825 | func (ms MigrationSet) GetMigrationRecords(db *sql.DB, dialect string) ([]*MigrationRecord, error) { |
| 826 | dbMap, err := ms.getMigrationDbMap(db, dialect) |
nothing calls this directly
no test coverage detected
searching dependent graphs…