* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $ */ abstract class BaseConv extends Doctrine_Record { public function setTableDefinition() { $this->setTableName('conv'); $this->hasColumn('idAnnCC', 'integer', 8, array('type' => 'integer', 'length' => 8, 'primary' => true)); $this->hasColumn('annee', 'integer', 2, array('type' => 'integer', 'length' => 2, 'unsigned' => 1, 'default' => '0', 'notnull' => true)); $this->hasColumn('idCC', 'integer', 8, array('type' => 'integer', 'length' => 8, 'default' => '0', 'notnull' => true)); $this->hasColumn('numCC', 'integer', 8, array('type' => 'integer', 'length' => 8, 'default' => '0', 'notnull' => true)); $this->hasColumn('Date_Parution', 'date', null, array('type' => 'date', 'default' => '0000-00-00', 'notnull' => true)); $this->hasColumn('ministere', 'string', 3, array('type' => 'string', 'length' => 3, 'fixed' => true, 'default' => '', 'notnull' => true)); $this->hasColumn('urlAnn', 'string', 80, array('type' => 'string', 'length' => 80, 'default' => '', 'notnull' => true)); $this->hasColumn('numBrochure', 'string', 30, array('type' => 'string', 'length' => 30, 'default' => '', 'notnull' => true)); $this->hasColumn('listeCC', 'string', 40, array('type' => 'string', 'length' => 40, 'default' => '', 'notnull' => true)); $this->hasColumn('nomCC', 'string', 255, array('type' => 'string', 'length' => 255, 'default' => '', 'notnull' => true)); $this->hasColumn('infoCC', 'string', null, array('type' => 'string', 'notnull' => true)); $this->hasColumn('annonce', 'string', null, array('type' => 'string', 'notnull' => true)); $this->hasColumn('dateInsert', 'timestamp', null, array('type' => 'timestamp', 'notnull' => true)); } }