Currently I need to move my database from postgreSql to google cloud sql. I use pg_cron to remove stale records like this:
SELECT cron.schedule('30 3 * * 6', $$DELETE FROM events WHERE event_time < now() - interval '1 week'$$);
I've read folowing article: https://cloud.google.com/sql/docs/postgres/extensions
And was not found anything related to pg_cron
Also I've read Does Cloud SQL Postgres have any cron-like tool? but it looks like overengineering for my task.
Is there a simpler way?