Files
thrilltrack-explorer/supabase/migrations/20251015181448_bc94294c-b363-45ae-8829-483e924c3319.sql
2025-10-15 18:15:01 +00:00

6 lines
241 B
SQL

-- Enable pg_cron extension for automated cleanup
CREATE EXTENSION IF NOT EXISTS pg_cron;
-- Grant necessary permissions to postgres role
GRANT USAGE ON SCHEMA cron TO postgres;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA cron TO postgres;