31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* BaseSirenTva
|
|
*
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
*
|
|
* @property integer $cle
|
|
* @property integer $siren
|
|
* @property integer $nonTeste
|
|
* @property float $duree
|
|
* @property timestamp $dateMod
|
|
*
|
|
* @package ##PACKAGE##
|
|
* @subpackage ##SUBPACKAGE##
|
|
* @author ##NAME## <##EMAIL##>
|
|
* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $
|
|
*/
|
|
abstract class BaseSirenTva extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->setTableName('siren_tva');
|
|
$this->hasColumn('cle', 'integer', 2, array('type' => 'integer', 'length' => 2, 'unsigned' => 1));
|
|
$this->hasColumn('siren', 'integer', 4, array('type' => 'integer', 'length' => 4, 'unsigned' => 1, 'primary' => true));
|
|
$this->hasColumn('nonTeste', 'integer', 1, array('type' => 'integer', 'length' => 1, 'default' => '0', 'notnull' => true));
|
|
$this->hasColumn('duree', 'float', null, array('type' => 'float'));
|
|
$this->hasColumn('dateMod', 'timestamp', null, array('type' => 'timestamp', 'notnull' => true));
|
|
}
|
|
|
|
} |