Skip to content

Instantly share code, notes, and snippets.

@medinadato
Forked from eminetto/Posts.php
Created September 20, 2012 18:57
Show Gist options
  • Save medinadato/3757683 to your computer and use it in GitHub Desktop.
Save medinadato/3757683 to your computer and use it in GitHub Desktop.
Posts
<?php
/**
* Modelo da tabela posts
*
*/
class Application_Model_Posts extends Zend_Db_Table_Abstract
{
  protected $_name = 'posts';  
  protected $_dependentTables = array('Application_Model_Comments'); 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment