| 39 | } |
| 40 | |
| 41 | type migration struct { |
| 42 | version string |
| 43 | description string |
| 44 | migrate func(ctx context.Context, x *xorm.Engine) error |
| 45 | shouldCleanCache bool |
| 46 | } |
| 47 | |
| 48 | // Version returns the migration's version |
| 49 | func (m *migration) Version() string { |
nothing calls this directly
no outgoing calls
no test coverage detected