diff options
| author | Rat <gmstreetrat@gmail.com> | 2015-03-16 07:28:49 +0100 |
|---|---|---|
| committer | Rat <gmstreetrat@gmail.com> | 2015-03-16 07:28:49 +0100 |
| commit | 8f3a80c1cf39978056979a0bcbcb7321e510c101 (patch) | |
| tree | fb935f44c86ea9ae84a232f499757b97728e86c4 /sql/updates/auth | |
| parent | 8366ed5a720047102fc44a7ae89adc8ed83f9076 (diff) | |
Core/Phases: Ported new phasing system from 4.3.4 branch and fixed some map swap logic
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/2015_03_15_00_auth.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/auth/2015_03_15_00_auth.sql b/sql/updates/auth/2015_03_15_00_auth.sql new file mode 100644 index 00000000000..339524a5091 --- /dev/null +++ b/sql/updates/auth/2015_03_15_00_auth.sql @@ -0,0 +1,12 @@ +DELETE FROM `rbac_permissions` WHERE `id`=776; +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (776, 'Command: debug phase'); + +DELETE FROM `rbac_linked_permissions` WHERE `id`=192 AND linkedId=776; +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES (192, 776); + +DELETE FROM `rbac_permissions` WHERE `id`=776; +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (776, 'Command: debug phase'); + +DELETE FROM `rbac_linked_permissions` WHERE `id`=192 AND linkedId=776; +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES (192, 776); + |
