create trigger "my_webhook" after insert
on "public"."todos" for each row
execute function "supabase_functions"."http_request"(
'https://discord.com/api/webhooks/myhookid',
'POST',
'{"Content-Type":"application/json"}',
'{}',
'1000'
);
create trigger "my_webhook" after insert
on "public"."todos" for each row
execute function "supabase_functions"."http_request"(
'https://discord.com/api/webhooks/myhookid',
'POST',
'{"Content-Type":"application/json"}',
'{}',
'1000'
);