2009-05-13 16:03:54 +00:00

47 lines
2.4 KiB
PHP

<?php
/**
* BaseConv
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @property integer $idAnnCC
* @property integer $annee
* @property integer $idCC
* @property integer $numCC
* @property date $Date_Parution
* @property string $ministere
* @property string $urlAnn
* @property string $numBrochure
* @property string $listeCC
* @property string $nomCC
* @property string $infoCC
* @property string $annonce
* @property timestamp $dateInsert
*
* @package ##PACKAGE##
* @subpackage ##SUBPACKAGE##
* @author ##NAME## <##EMAIL##>
* @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));
}
}