This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP POLICY IF EXISTS anon_read_schedule_entries ON schedule_entries; | |
| DROP POLICY IF EXISTS anon_read_schedule_meta ON schedule_meta; | |
| DROP POLICY IF EXISTS anon_read_event_areas ON event_areas; | |
| DROP POLICY IF EXISTS anon_read_unavailabilities ON unavailabilities; | |
| CREATE POLICY anon_read_schedule_entries ON schedule_entries FOR SELECT USING (true); | |
| CREATE POLICY anon_read_schedule_meta ON schedule_meta FOR SELECT USING (true); | |
| CREATE POLICY anon_read_event_areas ON event_areas FOR SELECT USING (true); | |
| CREATE POLICY anon_read_unavailabilities ON unavailabilities FOR SELECT USING (true); | |
| DELETE FROM schedule_entries WHERE event_id IN (SELECT id FROM events WHERE month = 4 AND year = 2026); | |
| DELETE FROM event_areas WHERE event_id IN (SELECT id FROM events WHERE month = 4 AND year = 2026); |