From 58d33ad9b78762a79b303f22640d5d6d6ea4a9a1 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 05:02:12 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- supabase/functions/migrate-helper/index.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 supabase/functions/migrate-helper/index.ts 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