KiWA001 commited on
Commit
2e65f0f
·
1 Parent(s): 75a7211

Fix SQL schema - remove sequence reference for uuid-based table

Browse files
Files changed (1) hide show
  1. supabase_sessions_schema.sql +0 -1
supabase_sessions_schema.sql CHANGED
@@ -98,7 +98,6 @@ $$ language plpgsql;
98
 
99
  -- Grant permissions
100
  grant all on provider_sessions to anon, authenticated;
101
- grant all on sequence provider_sessions_id_seq to anon, authenticated;
102
  grant execute on function upsert_provider_session to anon, authenticated;
103
  grant execute on function increment_conversation_count to anon, authenticated;
104
 
 
98
 
99
  -- Grant permissions
100
  grant all on provider_sessions to anon, authenticated;
 
101
  grant execute on function upsert_provider_session to anon, authenticated;
102
  grant execute on function increment_conversation_count to anon, authenticated;
103