feat: sync login email verification support

This commit is contained in:
A 2026-07-08 17:09:44 +08:00
parent e0cabb4930
commit 9a501f900a
39 changed files with 2198 additions and 117 deletions

View file

@ -0,0 +1,3 @@
CREATE UNIQUE INDEX account_passwords_login_email_lower_unique_idx
ON public.account_passwords (lower((login_email)::text))
WHERE ((login_email)::text <> ''::text);