From c73ce93f4cf84667d23c2ec7e425f40a845eaf4f Mon Sep 17 00:00:00 2001 From: Traesh Date: Sun, 14 May 2017 11:40:55 +0200 Subject: Core/Entities : Basic Conversation Implementation (#18010) --- sql/updates/auth/master/2017_05_14_00_auth.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/updates/auth/master/2017_05_14_00_auth.sql (limited to 'sql/updates/auth/master') 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); -- cgit v1.2.3