mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:27:42 +00:00
fix: ensure uniqueness (#6956)
* fix: ensure uniqueness * only update wrong ones * Update cmd/setup/16.go Co-authored-by: Silvan <silvan.reusser@gmail.com> --------- Co-authored-by: Silvan <silvan.reusser@gmail.com>
This commit is contained in:
33
cmd/setup/16.go
Normal file
33
cmd/setup/16.go
Normal file
@@ -0,0 +1,33 @@
|
||||
package setup
|
||||
|
||||
import (
|
||||
"context"
|
||||
_ "embed"
|
||||
|
||||
"github.com/zitadel/logging"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/database"
|
||||
)
|
||||
|
||||
var (
|
||||
//go:embed 16.sql
|
||||
uniqueConstraintLower string
|
||||
)
|
||||
|
||||
type UniqueConstraintToLower struct {
|
||||
dbClient *database.DB
|
||||
}
|
||||
|
||||
func (mig *UniqueConstraintToLower) Execute(ctx context.Context) error {
|
||||
res, err := mig.dbClient.ExecContext(ctx, uniqueConstraintLower)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
count, err := res.RowsAffected()
|
||||
logging.WithFields("count", count).Info("unique constraints updated")
|
||||
return err
|
||||
}
|
||||
|
||||
func (mig *UniqueConstraintToLower) String() string {
|
||||
return "16_unique_constraint_lower"
|
||||
}
|
Reference in New Issue
Block a user