2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class MyGroup extends Doctrine_Entity
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->setTableName('my_group');
|
|
|
|
|
|
|
|
$this->hasColumn('id', 'integer', 4, array ( 'primary' => true, 'autoincrement' => true,));
|
|
|
|
$this->hasColumn('name', 'string', 255, array ( 'notnull' => true,));
|
|
|
|
$this->hasColumn('description', 'string', 4000, array ());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->hasMany('MyUser as users', array('refClass' => 'MyUserGroup', 'local' => 'group_id', 'foreign' => 'user_id'));
|
|
|
|
}
|
|
|
|
}
|