1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/sandbox/models/generated/BaseContact.class.php

21 lines
424 B
PHP
Raw Normal View History

2007-10-15 23:34:48 +04:00
<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
*/
abstract class BaseContact extends Doctrine_Record
{
public function setTableDefinition()
{
$this->setTableName('contact');
$this->hasColumn('name', 'string', 255);
}
public function setUp()
{
$this->hasMany('User', array('local' => 'id',
'foreign' => 'contact_id'));
}
}