MysqlGroup.php 220 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
<?php
class MysqlGroup extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('name', 'string', null);

        $this->hasMany('MysqlUser', 'MysqlGroupMember.user_id');
    }
}