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
create or replace function increment_referral_count(p_referrer_id uuid) returns void as create_referrals_table.sql begin update public.referrals set count = count + 1 where referrer_id = p_referrer_id; end; create_referrals_table.sql language plpgsql security definer;