Para editar uma função criada anteriormente, primeiro é preciso apagar a mesma.
DROP FUNCTION get_users_without_profiles()
após isso só recriá-la como no passo anterior
Para editar uma função criada anteriormente, primeiro é preciso apagar a mesma.
DROP FUNCTION get_users_without_profiles()
após isso só recriá-la como no passo anterior
Você pode criar a função no SQL Editor do Supabase ou através de um script. Aqui está o SQL para criar a função:
add security definer to your function definition so that the function doesn't use the invoking user's permissions (security invoker is the default).
If you define your function with security definer privileges it will work. I used this for a while before switching to get the email from the JWT instead:
-- check if the passed user id is registered and return the email if registered or null if not registered
create or replace function "public"."get_user_email"(p_user_id uuid) returns text
language "plpgsql"
security definer
as $$
begin
return (
select email from "auth"."users" where id = p_user_id
);
end;
$$;
alter function "public"."get_user_email"(uuid) owner to "postgres";
Supabase provides several options for creating database functions. You can use the Dashboard or create them directly using SQL.
We provide a SQL editor within the Dashboard, or you can connect to your database
and run the SQL queries yourself.
Go to the "SQL editor" section.
Click "New Query".
Enter the SQL to create or replace your Database function.
Click "Run" or cmd+enter (ctrl+enter).
Após entrar criar a function seguindo o exemplo
create or replace function get_planets()
returns setof planets
language sql
as $$
select * from planets;
$$;
const { data, error } = supabase.rpc('get_planets')const { data, error } = supabase.rpc('get_planets').eq('id', 1)
NÃO PRECISA FAZER O BUILD ANTES
- Subir o code para o github
- Add New Site
- Import an existing project
- Deploy with github
- Escolha o repô
- Configurar
- Se tudo certo no fim estará no ar