Files
HKSingleParty/99_references/beacon-main/supabase/migrations/20240508051740_after.sql
2025-05-28 09:55:51 +08:00

13 lines
304 B
SQL

/**
* Setup miscellaneous things after the main setup
*/
/* -------------------------------------- Setup cron jobs -------------------------------------- */
-- Prune expired locations
SELECT cron.schedule(
'hourly-location-cleanup',
'0 * * * *',
'SELECT utilities.prune_expired_locations()'
);