* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $ */ abstract class BaseMatchmethods extends Doctrine_Record { public function setTableDefinition() { $this->setTableName('matchmethods'); $this->hasColumn('country', 'string', 100, array('type' => 'string', 'length' => 100, 'primary' => true)); $this->hasColumn('methods', 'string', null, array('type' => 'string', 'notnull' => true)); } }