trying to figure out how to get cron jobs working. I've added the extension and enabled it following this https://supabase.com/blog/postgres-as-a-cron-server When I create a job to run using the following query
select cron.schedule( 'cron-test-2', -- name of the cron job '* * * * *', -- every minute $$ UPDATE notifications SET updated_at = now() WHERE uuid="674b2fb9-fb77-4d7e-879f-273453a88f01" $$ );
select cron.schedule( 'cron-test-2', -- name of the cron job '* * * * *', -- every minute $$ UPDATE notifications SET updated_at = now() WHERE uuid="674b2fb9-fb77-4d7e-879f-273453a88f01" $$ );
it successfully returns a schedule with an id. But it doesn't seem to work. I've got no way of debugging this or even listing cron jobs. Can anyone help?
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.