/ db / migrations / 096-poll-free-scans-cron.sql
096-poll-free-scans-cron.sql
 1  -- Migration 096: Register poll-free-scans cron job
 2  -- Archives free scan results from Cloudflare Worker KV into local SQLite free_scans table.
 3  -- Follows the same pattern as 8.5 Poll Purchases.
 4  
 5  INSERT OR IGNORE INTO cron_jobs
 6    (name, task_key, description, handler_type, handler_value,
 7     interval_value, interval_unit, enabled, critical)
 8  VALUES
 9    ('8.7 Poll Free Scans', 'pollFreeScans',
10     'Fetch new free scan results from CF Worker KV and archive to free_scans SQLite table',
11     'function', 'pollFreeScans',
12     5, 'minutes', 1, 0);