mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
26 lines
364 B
Go
26 lines
364 B
Go
|
package setup
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"database/sql"
|
||
|
_ "embed"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
//go:embed 05.sql
|
||
|
lastFailedStmts string
|
||
|
)
|
||
|
|
||
|
type LastFailed struct {
|
||
|
dbClient *sql.DB
|
||
|
}
|
||
|
|
||
|
func (mig *LastFailed) Execute(ctx context.Context) error {
|
||
|
_, err := mig.dbClient.ExecContext(ctx, lastFailedStmts)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
func (mig *LastFailed) String() string {
|
||
|
return "05_last_failed"
|
||
|
}
|