Spaces:
Running
Running
Fix SQL schema - remove sequence reference for uuid-based table
Browse files
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 |
|