mmrGroupUser_C.php 266 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
<?php

class mmrGroupUser_C extends Doctrine_Record 
{
    public function setTableDefinition() 
    {
        $this->hasColumn('user_id', 'string', 30, array('primary' => true));
        $this->hasColumn('group_id', 'string', 30, array('primary' => true));
    }
}