© 2026 Hedgehog Software, LLC
await supabase.auth.signUp({ email, password }); await supabase.from('profile').insert({username,email});
CREATE POLICY "User can create own profile" ON public.profile FOR INSERT WITH CHECK (auth.uid() = id);