| 33 | } |
| 34 | |
| 35 | type migratorImpl struct { |
| 36 | sync.Mutex |
| 37 | basicRes context.BasicRes |
| 38 | logger core.Logger |
| 39 | executed map[string]bool |
| 40 | scripts []*scriptWithComment |
| 41 | pending []*scriptWithComment |
| 42 | } |
| 43 | |
| 44 | func (m *migratorImpl) loadExecuted() errors.Error { |
| 45 | db := m.basicRes.GetDal() |
nothing calls this directly
no outgoing calls
no test coverage detected