1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/sandbox/models/generated/BaseEntity.class.php
2007-10-18 04:04:28 +00:00

22 lines
359 B
PHP

<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
*/
abstract class BaseEntity extends Doctrine_Record
{
public function setTableDefinition()
{
$this->setTableName('entity');
$this->hasColumn('id', 'integer', 11, array('primary' => true,
'autoincrement' => true));
}
}