mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
28 lines
529 B
Go
28 lines
529 B
Go
|
package setup
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
_ "embed"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/database"
|
||
|
"github.com/zitadel/zitadel/internal/eventstore"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
//go:embed 22.sql
|
||
|
activeInstanceEvents string
|
||
|
)
|
||
|
|
||
|
type ActiveInstanceEvents struct {
|
||
|
dbClient *database.DB
|
||
|
}
|
||
|
|
||
|
func (mig *ActiveInstanceEvents) Execute(ctx context.Context, _ eventstore.Event) error {
|
||
|
_, err := mig.dbClient.ExecContext(ctx, activeInstanceEvents)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
func (mig *ActiveInstanceEvents) String() string {
|
||
|
return "22_active_instance_events_index"
|
||
|
}
|