Esempio n. 1
0
 protected function _setupTableName()
 {
     switch ($this->db_adapter) {
         case 'PDO_PGSQL':
             $this->_name = 'version';
             break;
         default:
             // including mysql, sqlite
             $this->_name = 'Version';
     }
     parent::_setupTableName();
 }