Hi, I am suddenly getting all sorts of connectivity issues and unhealthy markers in one of my DBs. I cannot tell if this is unrelated to my actions, or if some simple SQL I wrote caused the break.
The last SQL I ran before this started happening was: -- Allow anonymous uploads to maps bucket
CREATE POLICY "Anyone can upload maps"
ON storage.objects
FOR INSERT
TO anon
WITH CHECK (bucket_id = 'maps');
-- Allow anonymous to update (for upsert)
CREATE POLICY "Anyone can update maps"
ON storage.objects
FOR UPDATE
TO anon
USING (bucket_id = 'maps');