diff options
| author | Shauren <shauren.trinity@gmail.com> | 2017-12-31 18:37:09 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2017-12-31 23:22:55 +0100 |
| commit | 66621a85e970bf370e4e16c690e0401f4e168c1c (patch) | |
| tree | 07e146a35b688778dbb6f86106b2609d3207458d /sql/updates/auth/master | |
| parent | 89c91c271b94f34076be7256378610a2a45c9ed2 (diff) | |
Core/Quests: Implemented player choice rewards
Diffstat (limited to 'sql/updates/auth/master')
| -rw-r--r-- | sql/updates/auth/master/2017_12_31_00_auth.sql | 7 | ||||
| -rw-r--r-- | sql/updates/auth/master/9999_99_99_99_auth.sql | 5 |
2 files changed, 7 insertions, 5 deletions
diff --git a/sql/updates/auth/master/2017_12_31_00_auth.sql b/sql/updates/auth/master/2017_12_31_00_auth.sql new file mode 100644 index 00000000000..7348c426b5f --- /dev/null +++ b/sql/updates/auth/master/2017_12_31_00_auth.sql @@ -0,0 +1,7 @@ +DELETE FROM `rbac_permissions` WHERE `id`=869; +INSERT INTO `rbac_permissions` (`id`,`name`) VALUES +(869,'Command: debug send playerchoice'); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=869; +INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES +(196,869); diff --git a/sql/updates/auth/master/9999_99_99_99_auth.sql b/sql/updates/auth/master/9999_99_99_99_auth.sql deleted file mode 100644 index f673ceae849..00000000000 --- a/sql/updates/auth/master/9999_99_99_99_auth.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO `rbac_permissions` (id, NAME) VALUES -(869, "Command: debug send playerchoice"); - -INSERT INTO `rbac_linked_permissions` (id, linkedId) VALUES -(192, 869); |
