-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
André Meunier wrote:
Is there a way to assign multiple people to one group? I don't seem to find how to do that in sql in the database, I can see the users table, and the group table, but I don't find the link between them. And in the web interface, the Special:permissions can only do it one user at a time.
There's not a built-in user interface for changing group memberships for multiple accounts at once, but you could do it manually in the database something like this:
INSERT INTO user_groups (ug_user,ug_group) SELECT user_id, 'target_group' FROM user WHERE user_name IN ('First username', 'Second username', 'Third username');
- -- brion