aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authorTraesh <Traesh@users.noreply.github.com>2017-05-14 11:40:55 +0200
committerjoschiwald <joschiwald.trinity@gmail.com>2017-05-14 11:40:55 +0200
commitc73ce93f4cf84667d23c2ec7e425f40a845eaf4f (patch)
tree255a3af04144a58e3156491bffd1aa743fb06bfa /sql/updates/auth
parent3e18fcb8fd4ac8e9700f10eb3b6a1292c0f8beb8 (diff)
Core/Entities : Basic Conversation Implementation (#18010)
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/master/2017_05_14_00_auth.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2017_05_14_00_auth.sql b/sql/updates/auth/master/2017_05_14_00_auth.sql
new file mode 100644
index 00000000000..792ba10bc06
--- /dev/null
+++ b/sql/updates/auth/master/2017_05_14_00_auth.sql
@@ -0,0 +1,9 @@
+DELETE FROM `rbac_permissions` WHERE `id` IN (853, 854);
+INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
+(853, 'Command: .reload conversation_template'),
+(854, 'Command: .debug conversation');
+
+DELETE FROM `rbac_linked_permissions` WHERE `id` = 192 AND `linkedId` IN (853, 854);
+INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
+(192, 853),
+(192, 854);