From 32fa63f5267c4ca187cfc671fa1dec8b6d78421e Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Wed, 26 Feb 2025 14:28:50 +0100 Subject: [PATCH] Bug 36975: (QA follow-up) fix permission issue for atomic update --- installer/data/mysql/atomicupdate/bug_36975.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 installer/data/mysql/atomicupdate/bug_36975.pl diff --git a/installer/data/mysql/atomicupdate/bug_36975.pl b/installer/data/mysql/atomicupdate/bug_36975.pl old mode 100644 new mode 100755 index 705b561aa1c..55609c9a301 --- a/installer/data/mysql/atomicupdate/bug_36975.pl +++ b/installer/data/mysql/atomicupdate/bug_36975.pl @@ -7,7 +7,9 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - $dbh->do(q{ALTER TABLE `marc_modification_template_actions` MODIFY COLUMN `action` enum('delete_field', 'add_field', 'update_field', 'move_field', 'copy_field', 'copy_and_replace_field', 'set_record_source') NOT NULL AFTER `ordering`;}); + $dbh->do( + q{ALTER TABLE `marc_modification_template_actions` MODIFY COLUMN `action` enum('delete_field', 'add_field', 'update_field', 'move_field', 'copy_field', 'copy_and_replace_field', 'set_record_source') NOT NULL AFTER `ordering`;} + ); say $out "Added new action type 'set_record_source'"; }, }; -- 2.39.5