157dd4be37
Le 7 Avril 2011 PatchNote : Création de quelques fonctions ajax pour les chargement + modification de la base de donnée.
15 lines
606 B
PHP
15 lines
606 B
PHP
<?php
|
|
Class rapport extends Doctrine_Record
|
|
{
|
|
function setTableDefinition()
|
|
{
|
|
$this->setTableName('rapport');
|
|
|
|
$this->hasColumn('RapportId', 'integer', 11, array('primary' => true,'notnull' => true));
|
|
$this->hasColumn('CompanyId', 'integer', 11, array('notnull' => true));
|
|
$this->hasColumn('DataSetType', 'varchar', 50, array('notnull' => true));
|
|
$this->hasColumn('UrlObjectRapportFile', 'blob', null, array('notnull'=> true));
|
|
$this->hasColumn('DateTimeSave', 'date', null, array('notnull'=> true));
|
|
$this->hasColumn('Delivred', 'bool', null, array('notnull'=> true));
|
|
}
|
|
} |