Install the Zuvo Cron Postgres Module to begin scheduling recurring Jobs.
Dashboard
- Go to the Cron Postgres Module under Integrations in the Dashboard.
- Enable the
pg_cronextension.
SQL
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
Uninstall Zuvo Cron by disabling the pg_cron extension:
drop extension if exists pg_cron;