-- Insert profile for the existing user and make them admin insert into public.profiles (id, role, full_name) select id, 'admin', 'Sistem Yƶneticisi' from auth.users where email = 'kenankaraerr@hotmail.com' on conflict (id) do update set role = 'admin';