Skip to content

Instantly share code, notes, and snippets.

View medinadato's full-sized avatar

Renato medinadato

View GitHub Profile
@medinadato
medinadato / Posts.php
Created September 20, 2012 18:57 — forked from eminetto/Posts.php
Posts
<?php
/**
* Modelo da tabela posts
*
*/
class Application_Model_Posts extends Zend_Db_Table_Abstract
{
  protected $_name = 'posts';  
  protected $_dependentTables = array('Application_Model_Comments'); 
}