diff options
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/2014_06_08_02_rbac_permissions_434.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/auth/2014_06_08_02_rbac_permissions_434.sql b/sql/updates/auth/2014_06_08_02_rbac_permissions_434.sql new file mode 100644 index 00000000000..508e1147e9c --- /dev/null +++ b/sql/updates/auth/2014_06_08_02_rbac_permissions_434.sql @@ -0,0 +1,19 @@ +DELETE FROM `rbac_permissions` WHERE `id` IN (207,208,209,210,211,212,213); +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES +(207, 'Command: battlenetaccount'), +(208, 'Command: battlenetaccount create'), +(209, 'Command: battlenetaccount lock country'), +(210, 'Command: battlenetaccount lock ip'), +(211, 'Command: battlenetaccount password'), +(212, 'Command: battlenetaccount set'), +(213, 'Command: battlenetaccount set password'); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (207,208,209,210,211,212,213); +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES +(199, 207), +(196, 208), +(199, 209), +(199, 210), +(199, 211), +(196, 212), +(196, 213); |
