/**
  * Do everything that needs to be done to format a table name.
  * @param string $name of table
  * @return string table name
  */
 public function safeTable($name, $noQuotes = false)
 {
     assert('is_string($name)');
     return parent::safeTable(strtolower($name), $noQuotes);
 }