mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
43f1d59649
* fix(auth): cache users during session projection * fix(auth.user_sessions): add index for more efficient by user search
27 lines
474 B
Go
27 lines
474 B
Go
package setup
|
|
|
|
import (
|
|
"context"
|
|
_ "embed"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
)
|
|
|
|
var (
|
|
//go:embed 20.sql
|
|
addByUserIndexToSession string
|
|
)
|
|
|
|
type AddByUserIndexToSession struct {
|
|
dbClient *database.DB
|
|
}
|
|
|
|
func (mig *AddByUserIndexToSession) Execute(ctx context.Context) error {
|
|
_, err := mig.dbClient.ExecContext(ctx, addByUserIndexToSession)
|
|
return err
|
|
}
|
|
|
|
func (mig *AddByUserIndexToSession) String() string {
|
|
return "20_add_by_user_index_on_session"
|
|
}
|