From f44a86d98b37c761f482c202a541eed7b3f60b9c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 21 Sep 2023 08:55:50 -0400 Subject: [PATCH] Bug 34844: Add db update file --- installer/data/mysql/atomicupdate/bug_34844.pl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_34844.pl diff --git a/installer/data/mysql/atomicupdate/bug_34844.pl b/installer/data/mysql/atomicupdate/bug_34844.pl new file mode 100755 index 00000000000..699bf5549fa --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_34844.pl @@ -0,0 +1,17 @@ +use Modern::Perl; + +return { + bug_number => "34844", + description => "Add permission manage_item_editor_templates", + up => sub { + my ($args) = @_; + my $dbh = $args->{dbh}; + + $dbh->do(q{ + INSERT IGNORE permissions (module_bit, code, description) VALUES + ( 9, 'manage_item_editor_templates', 'Update and delete item editor template owned by others') + }); + + say $out "Added new permission 'manage_item_editor_templates'"; + }, +} -- 2.30.2