added more support for supabase-js
This commit is contained in:
5
migrations/20260312000003_add_function_runtime.sql
Normal file
5
migrations/20260312000003_add_function_runtime.sql
Normal 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;
|
||||
Reference in New Issue
Block a user