apps/docs/content/guides/cron/install.mdx
Install the Supabase Cron Postgres Module to begin scheduling recurring Jobs.
<Tabs scrollable size="small" type="underlined" defaultActiveId="dashboard" queryGroup="database-method"
<TabPanel id="dashboard" label="Dashboard">
pg_cron extension.create extension pg_cron with schema pg_catalog;
grant usage on schema cron to postgres;
grant all privileges on all tables in schema cron to postgres;
Uninstall Supabase Cron by disabling the pg_cron extension:
drop extension if exists pg_cron;
Disabling the pg_cron extension will permanently delete all Jobs.