PDA

View Full Version : Additional user groups.


voogru
05-29-2008, 09:29 PM
Hi everyone,

I'm working on an external application that will change a users "additional" usergroups, I essentially just want to change a members "Display User Group" and "Additional User Group".

Changing the display usergroup is absolute cake, but I can't seem to find what table is storing a users "additional" usergroups.

consolegaming
05-29-2008, 09:35 PM
In the actual database it is stored in the user table under the membergroupids field. Each usergroupid is seperated by a comma so the string would need to be exploded or something.

voogru
05-29-2008, 09:40 PM
In the actual database it is stored in the user table under the membergroupids field. Each usergroupid is seperated by a comma so the string would need to be exploded or something.

Ah, I missed that. Thanks.

I thought it would have been in it's own table, userid, usergroupid kind of format.