* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $ */ abstract class BasePrepaymentCountPrice extends sfDoctrineRecord { public function setTableDefinition() { $this->setTableName('prepayment_count_price'); $this->hasColumn('count_min', 'integer', null, array( 'type' => 'integer', 'notnull' => true, )); $this->hasColumn('price_one', '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); } }