a tool for shared writing and social publishing

add grants/priveleges to notifications schema

+7
+7
supabase/migrations/20251030203149_add_grants_and_priveleges_to_notifications_schema.sql
··· 1 + GRANT USAGE ON SCHEMA notifications TO anon, authenticated, service_role; 2 + GRANT ALL ON ALL TABLES IN SCHEMA notifications TO anon, authenticated, service_role; 3 + GRANT ALL ON ALL ROUTINES IN SCHEMA notifications TO anon, authenticated, service_role; 4 + GRANT ALL ON ALL SEQUENCES IN SCHEMA notifications TO anon, authenticated, service_role; 5 + ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA notifications GRANT ALL ON TABLES TO anon, authenticated, service_role; 6 + ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA notifications GRANT ALL ON ROUTINES TO anon, authenticated, service_role; 7 + ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA notifications GRANT ALL ON SEQUENCES TO anon, authenticated, service_role;