Correction oubli champ
This commit is contained in:
parent
48e48bef48
commit
eaf3596c6d
@ -12,6 +12,7 @@
|
||||
* @property string $dFax
|
||||
* @property enum $eLanguageCode
|
||||
* @property string $eName
|
||||
* @property string $eIdentifiers
|
||||
* @property string $eAdresse
|
||||
* @property string $eTelephone
|
||||
* @property integer $ePays
|
||||
@ -21,8 +22,8 @@
|
||||
* @property string $eAttentionOf
|
||||
* @property string $eSpecialRemarks
|
||||
* @property integer $commandes_id
|
||||
* @property integer $created_at
|
||||
* @property integer $updated_at
|
||||
* @property timestamp $created_at
|
||||
* @property timestamp $updated_at
|
||||
*
|
||||
* @package ##PACKAGE##
|
||||
* @subpackage ##SUBPACKAGE##
|
||||
@ -41,6 +42,7 @@ abstract class BaseCommandesDetail extends Doctrine_Record
|
||||
$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('eIdentifiers', 'string', 500, array('type' => 'string', 'length' => 500, '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));
|
||||
@ -50,7 +52,8 @@ abstract class BaseCommandesDetail extends Doctrine_Record
|
||||
$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));
|
||||
$this->hasColumn('created_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
||||
$this->hasColumn('updated_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user