*/ class Mage_Poll_Model_Resource_Poll_Answer extends Mage_Core_Model_Resource_Db_Abstract { /** * Initialize Poll_Answer resource * */ protected function _construct() { $this->_init('poll/poll_answer', 'answer_id'); } /** * Initialize unique fields * * @return Mage_Poll_Model_Resource_Poll_Answer */ protected function _initUniqueFields() { $this->_uniqueFields = array(array( 'field' => array('answer_title', 'poll_id'), 'title' => Mage::helper('poll')->__('Answer with the same title in this poll') )); return $this; } }