* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $ */ abstract class BaseTopJobPrice extends sfDoctrineRecord { public function setTableDefinition() { $this->setTableName('top_job_price'); $this->hasColumn('days_min', 'integer', null, array( 'type' => 'integer', 'notnull' => true, )); $this->hasColumn('price_day', 'integer', null, array( 'type' => 'integer', 'notnull' => true, )); $this->option('collate', 'utf8_czech_ci'); $this->option('charset', 'utf8'); } public function setUp() { parent::setUp(); $timestampable0 = new Doctrine_Template_Timestampable(); $this->actAs($timestampable0); } }