Skip to content

GroupName Changing

MrJesseZ edited this page Aug 21, 2017 · 25 revisions

How to change the Name of a Group?

!! You need to have UltraPermissions Connected to your MySQL to follow the next steps !!

2 Commands to change all names.

UPDATE UltraPermissions_GroupsSETname='NEWNAME' WHERE name='oldname'; UPDATE UltraPermissions_UsersSETgroupName='NEWNAME' WHERE groupName='oldname';

Steps to change the names.

  1. Go to your MySQL and find the Tables of UltraPermission:

  1. You need to change the names in this Tables.

UltraPermissions_BungeePermissions.

UltraPermissions_Groups.

UltraPermissions_Permissions.

UltraPermissions_Users.

  • Click on one of the tables above.

  • Click near the top of the webpage on SQL:

  • Then you will see this:

  • Delete the (purple/orange) message and place this message. For the Tables

UltraPermissions_BungeePermissions.

UltraPermissions_Groups.

UltraPermissions_Permissions.

use this command:

UPDATE UltraPermissions_GroupsSETname='NEWNAME' WHERE name='oldname';

For the Table

UltraPermissions_Users

use:

UPDATE UltraPermissions_UsersSETgroupName='NEWNAME' WHERE groupName='oldname';

  • Change NEWNAME to the new name you want to give your group and change oldname to the name is was before (the name right now)

  • For example, I had the old group Admin and want to change it to SuperAdmin.

  • Press Start and the group name is changed.

  • Do you have Multiple groupname changes look down here to do it as fast as possible.

  • When done Press Start and all Groupnames are changed at ones.

Clone this wiki locally