Guide

Install

Install the Zuvo Cron Postgres Module to begin scheduling recurring Jobs.

Dashboard
  1. Go to the Cron Postgres Module under Integrations in the Dashboard.
  2. Enable the pg_cron extension.
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;