setTableName('sf_guard_user_group'); $this->hasColumn('created_at', 'timestamp', null, array ()); $this->hasColumn('updated_at', 'timestamp', null, array ()); $this->hasColumn('group_id', 'integer', 4, array ( 'primary' => true,)); $this->hasColumn('user_id', 'integer', 4, array ( 'primary' => true,)); } public function setUp() { $this->hasOne('sfGuardGroup as sfGuardGroup', array('local' => 'group_id', 'foreign' => 'id')); $this->hasOne('sfGuardUser as sfGuardUser', array('local' => 'user_id', 'foreign' => 'id')); } }