Files
zitadel/backend/v3/storage/database/migration.go

10 lines
210 B
Go
Raw Permalink Normal View History

package database
import "context"
type Migrator interface {
// Migrate executes migrations to setup the database.
// The method can be called once per running Zitadel.
Migrate(ctx context.Context) error
}