5 lines
105 B
SQL
5 lines
105 B
SQL
select id as owner_id, email, created_at
|
|
from auth.users
|
|
where email = 'admin@agendapsi.com.br'
|
|
limit 1;
|