added more support for supabase-js

This commit is contained in:
2026-03-12 10:18:52 +02:00
parent c0792f2e1d
commit 6708cf28a7
62 changed files with 6563 additions and 526 deletions

View File

@@ -0,0 +1,5 @@
-- Add runtime column to functions table
ALTER TABLE functions.functions ADD COLUMN runtime TEXT NOT NULL DEFAULT 'wasm';
-- Ensure existing functions default to wasm (covered by DEFAULT, but good to be explicit if DEFAULT is removed later)
-- UPDATE functions.functions SET runtime = 'wasm' WHERE runtime IS NULL;