Initial commit

This commit is contained in:
2025-07-27 21:49:34 -04:00
commit 133a935d90
36 changed files with 3121 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- Create a function in Supabase that can execute arbitrary SQL
CREATE OR REPLACE FUNCTION public.execute_sql(sql_text text)
RETURNS void
LANGUAGE plpgsql
AS $$
BEGIN
EXECUTE sql_text;
END;
$$;