I have 2 scheduled cron jobs in my jobs table. With ID 1 and ID 4. ID 1 runs every minute and ID 4 is supposed to run once a week.
In my job_run_details (and logs) I clearly see that job id 2 runs every minute... and job id 3 fails once a week. Job id 3 is clearly trying to call a deprecated function that was removed quite a while ago.
So there are old cron jobs scheduled somewhere, which I cant see. And cannot see them with postgres, but using a migration to remove them via supabase_admin also doesnt seem to work.
EDIT: This is not on local but in a hosted project. I can manually fire both jobs that should fire fine via integrations. The biggest problem ist that the jobid 3 call seems to fire instead of the job id 4.