/**
  * This tests whether the table exists.
  *
  * @param Omeka_Table $table The name of the table to check for.
  *
  * @return bool
  * @author Eric Rochester <*****@*****.**>
  **/
 protected function _tableExists($table)
 {
     $exists = false;
     try {
         $info = $this->db->describeTable($table);
         $exists = !empty($info);
     } catch (Zend_Db_Exception $e) {
     }
     return $exists;
 }