diff --git a/supabase/migrations/20251015181448_bc94294c-b363-45ae-8829-483e924c3319.sql b/supabase/migrations/20251015181448_bc94294c-b363-45ae-8829-483e924c3319.sql new file mode 100644 index 00000000..23c974a8 --- /dev/null +++ b/supabase/migrations/20251015181448_bc94294c-b363-45ae-8829-483e924c3319.sql @@ -0,0 +1,6 @@ +-- 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; \ No newline at end of file