Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created May 23, 2011 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eminetto/987356 to your computer and use it in GitHub Desktop.
Save eminetto/987356 to your computer and use it in GitHub Desktop.
Comments
<?php
/**
* Modelo da tabela comments
*
*/
class Application_Model_Comments extends Zend_Db_Table_Abstract
{
   protected $_name = 'comments';
   protected $_referenceMap = array(
    'Post' => array (
        'columns' => array('post_id'),
        'refTableClass' => 'Posts',
        'refColumns' => array('id')
    )
   );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment