You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Postgres performs string comparison case-sensitively, mysql does it case-insensitive. This means that on postgres, [email protected], [email protected] and [email protected] are all distinct emails, and a user could register with each one.
Domain names are not case sensitive, so at least the domain part should lowercased. The local part of an email address is technically case sensitive, but I don't think it is in practice.
The easiest way to accomplish this would be to lowercase email addresses before storing them, but it might be wrong to mangle addresses like that.