From b63c5fdb1792603263cd8c625d06a0498dbefe40 Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Thu, 6 Feb 2025 10:45:22 +0100 Subject: [PATCH] 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 --- cmd/setup/25.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/setup/25.go b/cmd/setup/25.go index c2cd4258d3..cc03a953c6 100644 --- a/cmd/setup/25.go +++ b/cmd/setup/25.go @@ -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" }