3 lines
173 B
SQL
3 lines
173 B
SQL
CREATE UNIQUE INDEX account_passwords_login_email_lower_unique_idx
|
|
ON public.account_passwords (lower((login_email)::text))
|
|
WHERE ((login_email)::text <> ''::text);
|