Default usergroups

Can someone post the default usergroups please? After our import we kinda lost them so I wanted to know what groups were present prior to the import in a fresh XF installation.

Thanks.
- Nick
 
From this file:

library/XenForo/Install/Data/MySql.php

Code:
$data[] = "
    INSERT INTO xf_user_group
        (user_group_id, title, display_style_priority, username_css, user_title)
    VALUES
        (1, 'Unregistered / Unconfirmed', 0, '', 'Guest'),
        (2, 'Registered', 0, '', ''),
        (3, 'Administrative', 1000, '', 'Administrator'),
        (4, 'Moderating', 900, '', 'Moderator')
";

This query inserts the default groups during the install. It shows the four default groups.
 
Ah, I see. Thanks.

There is no "banned" group in XF? I'm still trying to get our groups "integrated" with XF since after the import we pretty much ended up with two admin groups, two Moderator groups, two Registered groups + our old VB banned group, super mods group etc.
 
Top Bottom