package migration import "context" type Migration interface { Version() string Up(context.Context) error Down(context.Context) error }