I love Supabase but our team needs to use schema functionality that PostgreSQL offers - unfortunately we have been unsuccessfully to make schemas working so far.
Other info:
- PostgreSQL 14
- newest version of the Supabase JS SDK's
- we have supabase hosted with Supabase's pro plan
What we have tried:
We created a new schema and added access to all types of authentication (why all? We first thought that maybe there is an error with authentication):
CREATE SCHEMA Brano; GRANT USAGE ON SCHEMA Brano TO postgres, anon, authenticated, service_role, dashboard_user;
Exposed schema to the API via this setting:
Tried the following code:
var options = { schema: 'brano' } const supabaseUrl = 'supabaseUrl' const supabaseKey = 'supabaseKey' const supabaseClient = createClient(supabaseUrl, supabaseKey, options); const { data, error } = await supabaseClient .from('test_brano') .insert([{ data: 123 }]);
Got this error:
{ "message":"permission denied for table test_brano", "code":"42501", "details":null, "hint":null }
Links and documentation that we have tried reading (unfortunately we didn't make it work either way):
- https://github.com/supabase/supabase/discussions/7642
- https://github.com/supabase/postgrest-js/issues/280
- https://supabase.com/docs/reference/javascript/initializing#with-additional-parameters
- https://github.com/supabase/supabase/discussions/1222
Did we missed something? Thanks in advance!