mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-24 01:37:11 +00:00
10 lines
210 B
Go
10 lines
210 B
Go
|
|
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
|
||
|
|
}
|