* @version SVN: $Id: Builder.php 6401 2009-09-24 16:12:04Z guilhermeblanco $ */ abstract class BaseCommandesPieces extends Doctrine_Record { public function setTableDefinition() { $this->setTableName('commandes_pieces'); $this->hasColumn('id', 'integer', 4, array( 'type' => 'integer', 'length' => 4, 'unsigned' => 0, 'primary' => true, 'autoincrement' => true, )); $this->hasColumn('siren', 'string', 9, array( 'type' => 'string', 'length' => 9, 'fixed' => false, 'primary' => false, 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('type', 'string', 1, array( 'type' => 'string', 'length' => 1, 'fixed' => true, 'primary' => false, 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('document', 'string', 200, array( 'type' => 'string', 'length' => 200, 'fixed' => false, 'primary' => false, 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('info', 'string', null, array( 'type' => 'string', 'fixed' => false, 'primary' => false, 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('statut', 'integer', 4, array( 'type' => 'integer', 'length' => 4, 'unsigned' => 0, 'primary' => false, 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('dateCommande', 'timestamp', null, array( 'type' => 'timestamp', 'primary' => false, 'default' => '0000-00-00 00:00:00', 'notnull' => true, 'autoincrement' => false, )); $this->hasColumn('dateReception', 'timestamp', null, array( 'type' => 'timestamp', 'primary' => false, 'default' => '0000-00-00 00:00:00', 'notnull' => true, 'autoincrement' => false, )); } }