Example #1
0
 /**
  * Checks a table's integrity and repairs it if necessary.
  * @var string $tableName The name of the table.
  * @return boolean Return true if the table has integrity after the method is complete.
  */
 static function checkAndRepairTable($table)
 {
     return DB::$globalConn->checkAndRepairTable($table);
 }