Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My model is called Application_Model_Poll. Zend is forcing me name my database table the same as the model. Is there anyway I can just call the table Poll?

share|improve this question

1 Answer

up vote 0 down vote accepted
class Application_Model_DbTable_Poll extends Zend_Db_Table_Abstract
{
    protected $_name = 'Poll';
}
share|improve this answer
That doesn't seem to have done anything other than add a protected member to the class? Do I have to use this anywhere? – edwinNosh Mar 18 '11 at 17:05
@edwinNosh so what error are you getting now? – Vika Mar 18 '11 at 17:09
My bad. I had it in the controller rather than the model. Thanks – edwinNosh Mar 18 '11 at 17:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.