fix(login): fix migration to allow login by email again (#9315)

# Which Problems Are Solved

The login by email was not possible anymore. This was due to a newly
generated user projection because of #9255 .
Internal logs showed that the computed lower case column for verified
email was missing.

# How the Problems Are Solved

Update name of setup step 25 to rerun the step, since the underlying sql
changed.

# Additional Changes

None

# Additional Context

- relates to #9255
This commit is contained in:
Livio Spring 2025-02-06 10:45:22 +01:00 committed by GitHub
parent 4dc7a58a25
commit b63c5fdb17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,5 +23,5 @@ func (mig *User11AddLowerFieldsToVerifiedEmail) Execute(ctx context.Context, _ e
}
func (mig *User11AddLowerFieldsToVerifiedEmail) String() string {
return "25_user13_add_lower_fields_to_verified_email"
return "25_user14_add_lower_fields_to_verified_email"
}