From 3fc854e12795f6191c532f26b0e6951c8a00eb9c 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..593053671b1 --- /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, $out ) = @$args{qw(dbh out)}; + + $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