mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 06:27:33 +00:00
9 lines
155 B
Go
9 lines
155 B
Go
![]() |
package database
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Migrator interface {
|
||
|
// Migrate executes migrations to setup the database.
|
||
|
Migrate(ctx context.Context) error
|
||
|
}
|