1
0
mirror of synced 2025-02-25 00:23:12 +03:00

11 lines
220 B
PHP
Raw Normal View History

<?php
class MysqlGroup extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('name', 'string', null);
$this->hasMany('MysqlUser', 'MysqlGroupMember.user_id');
}
}