big test rc

This commit is contained in:
React User
2026-06-02 07:48:41 +00:00
parent 04b3463b19
commit c7d89471ef
236 changed files with 14480 additions and 64 deletions
+9
View File
@@ -0,0 +1,9 @@
-- Registration email. Run in Supabase Dashboard → SQL Editor.
-- Application stores normalized (trimmed, lower-case) addresses.
alter table public.users
add column if not exists email text null;
create unique index if not exists users_email_unique
on public.users (email)
where email is not null;