1
0
mirror of synced 2025-01-09 18:47:10 +03:00
doctrine2/sandbox/models/generated/BaseEntity.class.php

22 lines
359 B
PHP
Raw Normal View History

<?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));
}
}