* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $ */ abstract class BaseCommandesDetail extends Doctrine_Record { public function setTableDefinition() { $this->setTableName('commandes_detail'); $this->hasColumn('id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'primary' => true, 'autoincrement' => true)); $this->hasColumn('dIdentite', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('dTelephone', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('dEmail', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('dFax', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('eLanguageCode', 'enum', 1, array('type' => 'enum', 'length' => 1, 'values' => array(0 => 'E', 1 => 'F', 2 => 'D'), 'notnull' => true)); $this->hasColumn('eName', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('eAdresse', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('eTelephone', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true)); $this->hasColumn('ePays', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('eCreditOpinionCurrency', 'enum', 3, array('type' => 'enum', 'length' => 3, 'values' => array(0 => 'GBP', 1 => 'EUR', 2 => 'USD', 3 => 'JYP', 4 => 'DKK'), 'notnull' => true)); $this->hasColumn('eCreditOpinionPeriod', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('eBankers', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true)); $this->hasColumn('eAttentionOf', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true)); $this->hasColumn('eSpecialRemarks', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true)); $this->hasColumn('commandes_id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('created_at', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); $this->hasColumn('updated_at', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true)); } }