You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
// Scan artists that haven't been updated for 3 days...
$db = Database::getInstance();
$mysqli = $db->getConnection();
$sql_query = "SELECT artist_id,artist_mbid,last_updated FROM v2_artist WHERE ((last_updated < NOW() - INTERVAL 3 DAY) OR (last_updated IS NULL)) ORDER BY last_updated ASC LIMIT 100";