alecpl
2010-04-16 5ba5fd5e3dfec8f6ccef833c3c4ff217551dce33
- allow to set threshold days as command line argument, set default value to '7'
- comment out the code for database without foreign keys (we rely on this feature in core code, so why not here?)


1 files modified
10 ■■■■ changed files
bin/cleandb.php 10 ●●●● patch | view | raw | blame | history
bin/cleandb.php
@@ -40,12 +40,18 @@
if (!$db->is_connected() || $db->is_error)
  die("No DB connection");
if (!empty($_SERVER['argv'][1]))
  $days = intval($_SERVER['argv'][1]);
else
  $days = 7;
// remove all deleted records older than two days
$threshold = date('Y-m-d 00:00:00', time() - 2 * 86400);
$threshold = date('Y-m-d 00:00:00', time() - $days * 86400);
foreach (array('contacts','contactgroups','identities') as $table) {
  // also delete linked records
  // could be skipped for databases which respect foreign key constraints
/*
  if ($table == 'contacts' || $table == 'contactgroups') {
    $ids = array();
    $pk = $primary_keys[$table];
@@ -65,7 +71,7 @@
      echo $db->affected_rows() . " records deleted from '".get_table_name('contactgroupmembers')."'\n";
    }
  }
*/
  // delete outdated records
  $db->query(
    "DELETE FROM ".get_table_name($table)."