stash/pkg/manager/post_migrate.go

9 lines
196 B
Go

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