stash/internal/manager/post_migrate.go

9 lines
194 B
Go

package manager
import "context"
// PostMigrate is executed after migrations have been executed.
func (s *Manager) PostMigrate(ctx context.Context) {
setInitialMD5Config(ctx, s.TxnManager)
}