diff --git a/supabase/functions/migrate-helper/index.ts b/supabase/functions/migrate-helper/index.ts new file mode 100644 index 0000000..2a2b65b --- /dev/null +++ b/supabase/functions/migrate-helper/index.ts @@ -0,0 +1,5 @@ +Deno.serve(async (_req) => { + return new Response(JSON.stringify({ ok: true }), { + headers: { "Content-Type": "application/json" }, + }); +}); \ No newline at end of file