From 4e7619116d7644f2405413a6f04c922b6c326f3b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 17 Nov 2021 16:49:27 +0000 Subject: [PATCH] Bug 29457: Generic warning at upgrade Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy Amended: Adding exec flag and two dots. --- installer/data/mysql/atomicupdate/bug_29457.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_29457.pl diff --git a/installer/data/mysql/atomicupdate/bug_29457.pl b/installer/data/mysql/atomicupdate/bug_29457.pl new file mode 100755 index 0000000000..1797614291 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_29457.pl @@ -0,0 +1,12 @@ +use Modern::Perl; + +return { + bug_number => "29457", + description => "Fee Cancellation records the wrong manager_id", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + say $out "WARNING: You may have some incorrect manager_id's recorded against account cancellation lines, please see bugzilla for details."; + say $out "NOTE: You may already have this bugfix applied at an earlier upgrade."; + }, +} -- 2.20.1