mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-03 07:37:11 +01:00
Core/RBAC: Fix errors in RBAC sql related to ea2fe0217d
This commit is contained in:
File diff suppressed because one or more lines are too long
7
sql/updates/world/2013_09_30_03_world_misc.sql
Normal file
7
sql/updates/world/2013_09_30_03_world_misc.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `command` WHERE `permission` BETWEEN 200 AND 216;
|
||||
INSERT INTO `command` (`name`, `permission`, `help`) VALUES
|
||||
('rbac account list', 202, 'Syntax: rbac account list [$account]\n\nView permissions of selected player or given account\nNote: Only those that affect current realm'),
|
||||
('rbac account grant', 203, 'Syntax: rbac account grant [$account] #id [#realmId]\n\nGrant a permission to selected player or given account.\n\n#reamID may be -1 for all realms.'),
|
||||
('rbac account deny', 204, 'Syntax: rbac account deny [$account] #id [#realmId]\n\nDeny a permission to selected player or given account.\n\n#reamID may be -1 for all realms.'),
|
||||
('rbac account revoke', 205, 'Syntax: rbac account revoke [$account] #id\n\nRemove a permission from an account\n\nNote: Removes the permission from granted or denied permissions'),
|
||||
('rbac list', 206, 'Syntax: rbac list [$id]\n\nView list of all permissions. If $id is given will show only info for that permission.');
|
||||
Reference in New Issue
Block a user