#!/usr/bin/env php Cron execution - running queries on database 'murielornaoh': Deleting data older than: 2025-11-18 00:00:00 (--days=90) 1) use murielornaoh; 2) TRUNCATE pre6538_log; 3) TRUNCATE pre6538_layered_filter_block; 4) DELETE c, cs FROM pre6538_connections c LEFT JOIN pre6538_connections_source cs ON (c.id_connections = cs.id_connections) WHERE c.date_add < '2025-11-18 00:00:00'; 5) OPTIMIZE TABLE pre6538_connections, pre6538_connections_source; 6) DELETE g FROM pre6538_guest g LEFT JOIN pre6538_customer c ON (g.id_customer = c.id_customer) WHERE c.id_customer IS NULL; 7) OPTIMIZE TABLE pre6538_guest; OK: use murielornaoh; OK: TRUNCATE pre6538_log; OK: TRUNCATE pre6538_layered_filter_block; OK: DELETE c, cs FROM pre6538_connections c LEFT JOIN pre6538_connections_source cs ON (c.id_connections = cs.id_connections) WHERE c.date_add < '2025-11-18 00:00:00'; OK: OPTIMIZE TABLE pre6538_connections, pre6538_connections_source; OK: DELETE g FROM pre6538_guest g LEFT JOIN pre6538_customer c ON (g.id_customer = c.id_customer) WHERE c.id_customer IS NULL; OK: OPTIMIZE TABLE pre6538_guest; All statements executed successfully.