* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $ */ abstract class BaseDelais extends Doctrine_Record { public function setTableDefinition() { $this->setTableName('delais'); $this->hasColumn('id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'primary' => true, 'autoincrement' => true)); $this->hasColumn('normalDe', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('normalA', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('rapideDe', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('rapideA', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('country_id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); } }