| 39 | } |
| 40 | |
| 41 | type migration struct { |
| 42 | description string |
| 43 | migrate func(db *datastore) error |
| 44 | } |
| 45 | |
| 46 | func New(d string, fn func(db *datastore) error) Migration { |
| 47 | return &migration{d, fn} |
nothing calls this directly
no outgoing calls
no test coverage detected