From d84f92e27d3ae55c2beda82766d4f6c5181b8135 Mon Sep 17 00:00:00 2001 From: Tino Marques <59707674+tinomarques@users.noreply.github.com> Date: Tue, 14 Jan 2025 21:42:37 -0500 Subject: [PATCH] Fix: Specifies localhost schema as "public" in supabase/config.toml (#3133) --- supabase/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/config.toml b/supabase/config.toml index 23fef518e2..83fc6edec3 100644 --- a/supabase/config.toml +++ b/supabase/config.toml @@ -7,7 +7,7 @@ project_id = "helicone" port = 54321 # Schemas to expose in your API. Tables, views and stored procedures in this schema will get API # endpoints. public and storage are always included. -schemas = [] +schemas = ["public"] # Extra schemas to add to the search_path of every request. extra_search_path = ["extensions"] # The maximum number of rows returns from a view, table, or stored procedure. Limits payload size